Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I would like to upload a file asynchronously with JQuery. This is my HTML:

<span>File</span>
<input type="file" id="file" name="file" size="10"/>
<input id="uploadbutton" type="button" value="Upload"/>

And here my javascript:

$(document).ready(function () {
  $("#uploadbutton").click(function () {
    var filename = $("#file").val();

    $.ajax({
      type: "POST",
      url: "addFile.do",
      enctype: 'multipart/form-data',
      data: {
        file: filename
      },
      success: function () {
        alert("Data Uploaded: ");
      }
    });
  });
});

Instead of the file being uploaded, I am only getting the filename. Help?

Current Solution

I am using to upload files the jQuery Form Plugin

share|improve this question
11  
you are only getting the file name because your var filename is getting the value of $('#file'), not the file that lies in the input – Jimmy Nov 3 '09 at 16:01
4  
Past time you accepted an answer on this question, I think. – Blazemonger Apr 1 at 14:40

19 Answers

up vote 429 down vote
+100

With HTML5 you CAN make file uploads with Ajax and Jquery. Not only that, you can do file validations(name,size,MIME-type) or handle the progress event with the html5 progress tag(or a div). Recently I had to make a file uploader but I didn't want to use flash nor Iframes or plugins and after some research I came up with the solution.

The HTML:

<form enctype="multipart/form-data">
  <input name="file" type="file" />
  <input type="button" value="Upload" />
</form>
<progress></progress>

First you can do some validation if you want. For example in the onChange event of the file.

$(':file').change(function(){
    var file = this.files[0];
    name = file.name;
    size = file.size;
    type = file.type;
    //your validation
});

Now the Ajax submit with the button's click.

$(':button').click(function(){
    var formData = new FormData($('form')[0]);
    $.ajax({
        url: 'upload.php',  //server script to process data
        type: 'POST',
        xhr: function() {  // custom xhr
            var myXhr = $.ajaxSettings.xhr();
            if(myXhr.upload){ // check if upload property exists
                myXhr.upload.addEventListener('progress',progressHandlingFunction, false); // for handling the progress of the upload
            }
            return myXhr;
        },
        //Ajax events
        beforeSend: beforeSendHandler,
        success: completeHandler,
        error: errorHandler,
        // Form data
        data: formData,
        //Options to tell JQuery not to process data or worry about content-type
        cache: false,
        contentType: false,
        processData: false
    });
});

Now if you want to handle the progress.

function progressHandlingFunction(e){
    if(e.lengthComputable){
        $('progress').attr({value:e.loaded,max:e.total});
    }
}

As you can see, with HTML5(and some research) file uploading not only becomes possible but super easy. Try it with Chrome as some of the html5 components of the example aren't avaible in every browser.

share|improve this answer
68  
It's still relevant to point out when something is not cross-browser compatible, because some of us do search and read OTHER people's questions as well. Joey V had a six-word comment pointing out that it doesn't work on IE; this is valuable information even if the questioner chooses to use this solution anyway. – user435779 Jul 17 '12 at 18:37
3  
Thanks for function progressHandlingFunction :) – Tien Do Sep 6 '12 at 7:26
2  
@Alessandro yes you can, for php it will be a normal file upload. – olanod Nov 3 '12 at 10:15
9  
This should work in Internet Explorer but only Version 10. (caniuse.com/xhr2) – Samir Jan 2 at 16:33
3  
Doesn't work in IE7-9 – KevinDeus May 6 at 21:39
show 10 more comments

There's various ready-made plugins on doing file upload on jquery.

Doing this kind of uploading hacks is not an enjoyable experience, so people enjoy using ready-made solutions.

Here's few:

You can search more from jquery's plugin -site.

share|improve this answer
7  
The AjaxFUP-link seems to be broken. I suspect this is what is refered to: valums.com/ajax-upload – UlfR Jul 16 '09 at 6:31
I never could get the fyneworks.com one to work on chrome or some other browser, i don't remember which. It worked fine on some, and would always do a single one fine, but I could not select multiple files at one time – Andrew Backer Sep 21 '11 at 5:26
1  
Well, Ajax File Upload works, its documentation is a bit misleading. It led me to believe that I should wrote post-ajax hooks (e.g. ajaxComplete(function(){$(this).hide();}), while in fact this code will trigger for any Ajax request, even not related to this plugin. I suggest adding an else case to if(typeof(data.error) != 'undefined'), and putting any post-upload code there. – ripper234 Dec 6 '11 at 14:51
The part about the jQuery plugin site is history now. – i.am.michiel Dec 15 '11 at 15:54
1  
For yet another read-made plugin, there's always Filepicker.io, which is kind of nice in that it deals with all of the nasty large file support issues, etc. – brettcvz Jun 21 '12 at 23:19
show 1 more comment

You cannot do AJAX file uploads. They're not supported but you can fake it.

If you create a iframe on the page (that you can hide with CSS), you can target your form to post to that iframe.

Because it's a real post, it's not wholly interactive so you'd need to look at requesting the progress of the current upload from your server. This varies massively depending on your server. ASPNET has nicer mechanisms. PHP plain fails but you can use Perl or Apache modifications to get around it.

If you need multiple file-uploads, it's best to do each file one at a time (to overcome maximum file upload limits). Post the first form to the iframe, monitor its progress using the above and when it has finished, post the second form to the iframe, and so on.

Or use a Java/Flash solution. They're a lot more flexible in what they can do with their posts...

share|improve this answer
78  
For the record it's now possible to do pure AJAX file uploads if the browser supports the File API - developer.mozilla.org/en/using_files_from_web_applications – meleyal Mar 25 '11 at 10:05

I recommend using jsupload plugin for this purpose. Your javascript would be:

$(document).ready(function() {
$("#uploadbutton").jsupload({ 
    action: "addFile.do",
    onComplete: function(response){
      alert( "server response: " + response);
    }   
});
share|improve this answer
31  
note that the new version is GPL licensed -- so make sure you only use it on open source web sites. The old version is MIT licensed. – Bryan Larsen Nov 19 '10 at 1:05
It uses JSON - so for PHP old version it will be non possible use. – Lorenzo Manucci Jun 22 '11 at 9:35
4  
URL is now valums.com/ajax-upload. – Patrick Fisher Feb 12 '12 at 2:07
9  
"This plugin is open sourced under GNU GPL 2 or later and GNU LGPL 2 or later." So as long as you don't distribute the copy or a modified version, you don't have to open your project. – Trantor Liu Jul 23 '12 at 12:02
2  
He added MIT License as an option you can choose. – Kerry Aug 27 '12 at 19:32
show 3 more comments

This AJAX file upload jQuery plugin uploads the file somehwere, and passes the response to a callback, nothing else.

  • It does not depend on specific HTML, just give it a <input type="file">
  • It does not require your server to respond in any particular way
  • It does not matter how many files you use, or where they are on the page

-- Use as little as --

$('#one-specific-file').ajaxfileupload({
  'action': '/upload.php'
});

-- or as much as --

$('input[type="file"]').ajaxfileupload({
  'action': '/upload.php',
  'params': {
    'extra': 'info'
  },
  'onComplete': function(response) {
    console.log('custom handler for file:');
    alert(JSON.stringify(response));
  },
  'onStart': function() {
    if(weWantedTo) return false; // cancels upload
  },
  'onCancel': function() {
    console.log('no file selected');
  }
});
share|improve this answer
2  
That was exactly what I was looking for. Thanks! – ralphtheninja Feb 26 '12 at 23:40
2  
Perfect!!! It's for sure what most people who are here want. – Saul Berardo Jan 21 at 3:45
1  
Yeah! I have been searching for hours! Thanks! – wumm Mar 17 at 11:58
1  
Not working with 1.9.1 :| – user840250 Mar 24 at 11:31
@user840250 jQuery 1.9.1? – Jordan Feldstein Mar 25 at 17:33

You cannot upload files using XMLHttpRequest (AJAX).

You can simulate the effect using an iframe or Flash.

Try this SWF (Flash) uploader : http://www.swfupload.org/documentation

Or this excellent jQuery forms plugin that posts your files through an iframe to get the effect :

share|improve this answer
is there any way to upload a file with jquery and no Flash? – Sergio del Amo Oct 3 '08 at 10:41
1  
Yes, you can POST to an iframe and capture the file there. I have very limited experience with this though, so I can't really comment on it. – Mattias Oct 3 '08 at 17:21
6  
Small remark: in latest versions of chrome and firefox it is possible, stackoverflow.com/questions/4856917/… – Alleo Nov 3 '11 at 18:57
Unless you convert it to Binary data... sooo yes you can. – Relic Sep 17 '12 at 19:35

I also wrote a blog post about this very subject, but mine is for ASP.NET MVC as the server side platform.

share|improve this answer
This is an excellent non-flash solution. The only draw backs are: (to html solution, no relection on JohnRudolfLewis) - it cant check file size before upload - or show progress whilst uploading... – Mark Redman Nov 17 '10 at 17:39
Simple and straightforward. Nicely done. – cliff.meyers Aug 31 '12 at 17:17

I just found this awesome tool to do asynchronous file uploading. It is written in jQuery and you can interact with it through jQuery.

Check out Plupload: http://www.plupload.com/

It uses these different "runtimes", ranging from HTML 5/4 to Flash to Gears. Here's an example of all the runtimes in one page...

http://www.plupload.com/example_all_runtimes.php

I highly recommend Plupload; its awesome!

I hope this helps.
Hristo

share|improve this answer
+1, this is very cool. I love how many different options it has available for runtime. I also like the API so you don't have to use the standard widget and can create your own. I did not want my solution to depend on flash or other plugins, but as long as it gracefully degrades when it's not there then I'm happy :) – Alex Ford Jun 17 '11 at 20:22

Here's a really good jQuery plugin:
http://blueimp.github.com/jQuery-File-Upload/

share|improve this answer
1  
blueimp.github.com/jQuery-File-Upload actually not code.. this high level code.... – Ankur Loriya May 1 '12 at 9:16
Blue Imp uploader is absolutely the king of uploaders – Dale Apr 4 at 11:18

I think others have already answered your question. However, if you also wish to post other data along with file upload, I would suggest you to use this jQuery Form plugin.

share|improve this answer

I've written this up in a Rails environment. It's only about five lines of JavaScript, if you use the lightweight jQuery-form plugin.

The challenge is in getting AJAX upload working as the standard remote_form_for doesn't understand multi-part form submission. It's not going to send the file data Rails seeks back with the AJAX request.

That's where the jQuery-form plugin comes into play.

Here’s the Rails code for it:

<% remote_form_for(:image_form, 
                   :url => { :controller => "blogs", :action => :create_asset }, 
                   :html => { :method => :post, 
                              :id => 'uploadForm', :multipart => true }) 
                                                                        do |f| %>
 Upload a file: <%= f.file_field :uploaded_data %>
<% end %>

Here’s the associated JavaScript:

$('#uploadForm input').change(function(){
 $(this).parent().ajaxSubmit({
  beforeSubmit: function(a,f,o) {
   o.dataType = 'json';
  },
  complete: function(XMLHttpRequest, textStatus) {
   // XMLHttpRequest.responseText will contain the URL of the uploaded image.
   // Put it in an image element you create, or do with it what you will.
   // For example, if you have an image elemtn with id "my_image", then
   //  $('#my_image').attr('src', XMLHttpRequest.responseText);
   // Will set that image tag to display the uploaded image.
  },
 });
});

And here’s the Rails controller action, pretty vanilla:

 @image = Image.new(params[:image_form])
 @image.save
 render :text => @image.public_filename

I’ve been using this for the past few weeks with Bloggity, and it’s worked like a champ.

share|improve this answer

A solution I found was to have the <form> target a hidden iFrame. The iFrame can then run JS to display to the user that it's complete (on page load).

share|improve this answer

Well a simple way to do that is here. Documentation and plugin download: http://pixelcone.com/jquery/ajax-file-upload-script/

share|improve this answer

Here's another really nice AJAX tutorial for uploading more than one file/image, with image preview and using HTML5 FormData. It also handles the case where FormData isn't available and posts old-fashioned way, so it works cross browser:

http://net.tutsplus.com/tutorials/javascript-ajax/uploading-files-with-ajax/

It's nice to see this thread going from "this can't be done" to actual solutions :)

share|improve this answer

I have been using below script to upload images which happens to works fine. Hope this will help you too.

HTML

<input id="file" type="file" name="file"/>
<div id="response"></div>

JS

jQuery('document').ready(function(){

        var input = document.getElementById("file");
        var formdata = false;
        if (window.FormData) {
            formdata = new FormData();
        }
        input.addEventListener("change", function (evt) {

            var i = 0, len = this.files.length, img, reader, file;

            for ( ; i < len; i++ ) {
                file = this.files[i];

                if (!!file.type.match(/image.*/)) {
                    if ( window.FileReader ) {
                        reader = new FileReader();
                        reader.onloadend = function (e) { 
                            //showUploadedItem(e.target.result, file.fileName);
                        };
                        reader.readAsDataURL(file);
                    }

                    if (formdata) {
                        formdata.append("image", file);
                        formdata.append("extra",'extra-data');
                    }

                    if (formdata) {
                        jQuery('div#response').html('<br /><img src="ajax-loader.gif"/>');


                        jQuery.ajax({
                            url: "upload.php",
                            type: "POST",
                            data: formdata,
                            processData: false,
                            contentType: false,
                            success: function (res) {
                             jQuery('div#response').html("Successfully uploaded");
                            }
                        });
                    }
                }
                else
                {
                    alert('Not a vaild image!');
                }   
            }

        }, false);

    });

Explanation

I use response div to show the uploading animation and response after upload is done.

Best part is you can send extra data such as ids & etc with the file when you use this script. I have mention it extra-data as in the script.

At the PHP level this will work as normal file upload. extra-data can be retrieved as $_POST data.

Here you are not using a plugin and stuff. You can change the code as you want. You are not blindly coding here. This is the core functionality of any jQuery file upload. Actually Javascript.

Hope this helps.

share|improve this answer

I strongly recommend fine-uploader:

  • East to use.
  • Multiple file select.
  • Progress bar.
  • Drag-and-drop upload.
  • and much more...
share|improve this answer

You can do it in vanilla JS pretty easily. Here's a snippet from my current project:

var xhr = new XMLHttpRequest();
xhr.upload.onprogress = function(e) {
    var percent = (e.position/ e.totalSize);
    // render a pretty progress bar
};
xhr.onreadystatechange = function(e) {
    if(this.readyState === 4) {
        // handle file upload complete
    }
};
xhr.open('POST', '/upload', true);
xhr.setRequestHeader('X-FileName',file.name); // pass the filename along
xhr.send(file);
share|improve this answer
Where do you define 'file' object? – Gary Apr 3 at 15:08
@Gary: Sorry, I should have posted that bit too. I was just using the new drag-and-drop functionality in HTML5; you can find an example here: html5demos.com/file-api#view-source -- just click "view source". Essentially, inside the ondrop event you can do var file = e.dataTransfer.files[0] – Mark Apr 3 at 15:35

Here is a easy and good one, which can give power to user for upload many files from one form in async fashion. we have used in our application and working (running) fine. http://blueimp.github.io/jQuery-File-Upload/

It also contains documentation which help you to edit it.

share|improve this answer
2  
You're a little late to the party. blueimp's jQuery file upload was already mentioned in Rafael Xavier's answer in 2011. – Brian Rogers Apr 12 at 19:16

Jquery Uploadify is another good plugin which I have used before to upload files. The js code is as simple as the following:

$('#file_upload').uploadify({
  'swf': '/public/js/uploadify.swf',
  'uploader': '/Upload.ashx?formGuid=' + $('#formGuid').val(),
  'cancelImg': '/public/images/uploadify-cancel.png',
  'multi': true,
  'onQueueComplete': function (queueData) {
    // ...
  },
  'onUploadStart': function (file) {
    // ...
  }
});
share|improve this answer

protected by Will Aug 30 '10 at 11:41

This question is protected to prevent "thanks!", "me too!", or spam answers by new users. To answer it, you must have earned at least 10 reputation on this site.

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