Can I use this following jQuery code to perform file upload using post method of Ajax request ?

$.ajax({
    type: "POST",
    timeout: 50000,
    url: url,
    data: dataString,
    success: function(data) { alert('success');return false;} });

if it is possible, do I need to fill "data" part? Is it the correct way? I only post the file to the server side.

I have been Googling around, but what I found was plugin while in my plan I do not want to use it. At least for the moment.

Thanks in advance

link|improve this question

feedback

4 Answers

up vote 15 down vote accepted

file upload is not possible through ajax. You can upload file, without refreshing page by using IFrame. you can check further detail here

UPDATE:

With XHR2, File upload through AJAX is supported. E.g. through FormData object, but unfortunately it is not supported by all/old browsers.

link|improve this answer
Great references. thanks mate – Willy Feb 23 '10 at 17:34
Finally someone who can just give a straight answer – David Nov 25 '11 at 12:09
1  
In 2012, it is now possible! – Silver89 May 10 at 3:14
feedback

An AJAX upload is indeed possible with XMLHttpRequest(). No iframes necessary. Upload progress can be shown.

For details see: Answer http://stackoverflow.com/a/4943774/873282 to question jQuery Upload Progress and AJAX file upload.

link|improve this answer
feedback
  • Use a hidden iframe and set your form's target to that iframe's name. This way, when the form is submitted, only the iframe will be refreshed.
  • Have an event handler registered for the iframe's load event to parse the response.

More details on my blog post: http://blog.manki.in/2011/08/ajax-fie-upload.html.

link|improve this answer
feedback

Ajax does not support file uploads, you should use iframe instead

link|improve this answer
how about jquery + plugin? – Willy Feb 23 '10 at 17:27
1  
Yes you can try this plugin uploadify.com – antyrat Feb 23 '10 at 17:59
AJAX upload is possible with XMLHttpRequest(). For details see: Answer stackoverflow.com/a/4943774/873282 to question stackoverflow.com/questions/4856917/…. – koppor Apr 27 at 15:27
feedback

Your Answer

 
or
required, but never shown

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