vote up 1 vote down star
1

Hello all.

I am attempting to submit a form via jQuery. My form contains fields and a file that must be uploaded. It is of type ENCTYPE="multipart/form-data".

I can receive all my field values using: post = $('#myForm').serialize(); But how do I receive the $_FILES array? I need this to process the uploaded file.

Is this possible using jQuery, and if so how? Or do I need to use a special upload plugin for jQuery?

Thanks for any help!

flag

0% accept rate

4 Answers

vote up 0 vote down

If you can control the environment, like, say, you're writing an admin app for an intranet in which you recommend the browser, then real AJAX file uploads are possible with Firefox 3 and above. In all other cases, the iframe workaround or a Flash based uploader is the way to go.

link|flag
vote up 0 vote down

If all you want is the name of the file being uploaded you could add a hidden input to the form that is automatically updated with the name of the file being uploaded when the user hits submit. So your form would look something like:

<form method='post' action='{whatever}' enctype='multipart/form-data'>
<input type="file" id="upload" name="upload"/>
<input type="hidden" name="uploadFile" id="uploadFile"/>
<input type="submit" onClick="updateForm()"/>
</form>

And you JavaScript would look something like:

function updateForm() {
fileName = $("input#upload").val();
$("input#uploadFile").val(fileName);
}

It's a little hacky, but you'd get the info you need.

link|flag
vote up 2 vote down

jquery form is the best way to do it, you can add it to any normal form,

<form method="post" action="URL">
<input type="file" name="file">
<input type="text" name"text">
<input type="submit"> 
</form>

<script type="text/javascript">
$(document).ready(function() { 
  $(form).ajaxForm();
})
</script>

will work as expected, but with ajax.

http://malsup.com/jquery/form/#code-samples

link|flag
vote up 6 vote down

You cannot upload files through javascript.

Check out this related question:
http://stackoverflow.com/questions/543926/is-it-possible-to-ajax-a-file-upload/543927#543927

Essentially, the two most popular ways of "faking" AJAX for file uploads is using a Flash plugin such as SWFUpload or submitting the form to a hidden iframe that processes the request.

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.