Embed a compact uploader inline within text flow, useful for inserting
attachments in the middle of a form or paragraph.
Please attach your signed document
before submitting the form below.
<!-- Inline in text flow -->
Please attach your signed document
<span id="inlineUploader"></span>
<span id="fileName"></span>
before submitting the form.
<script>
AjaxUploader.create(document.getElementById('inlineUploader'), {
uploadUrl: '/ajaxupload.axd/upload',
multiple: false,
autoUpload: true,
onComplete: function (file) {
document.getElementById('fileName').textContent = file.name;
}
});
</script>