Uploading files/image with Ajax & Jquery, without submitting a form

Uploading files/image with Ajax & Jquery, without submitting a form

Here is the code for uploading an image or file without submitting a form with Ajax. For this we will create object of FormData class and will append the properties of the file field in a attribute of FormData object, finally we will set the FormData object with the data key of ajax method of JQuery.

<input id="avatar" type="file" name="avatar" />
<button id="upload" value="Upload" />
$(document).on("click", "#upload", function() {
	var file_data = $("#avatar").prop("files")[0];   // Getting the properties of file from file field
	var form_data = new FormData();                  // Creating object of FormData class
	form_data.append("file", file_data)              // Appending parameter named file with properties of file_field to form_data
	form_data.append("user_id", 123)                 // Adding extra parameters to form_data
	$.ajax({
                url: "/upload_avatar",
                dataType: 'script',
                cache: false,
                contentType: false,
                processData: false,
                data: form_data,                         // Setting the data attribute of ajax with file_data
                type: 'post'
       })
})

We can get the parameters of file field by accessing the "file" key of the parameters hash. Sorry to say, but the FormData class is not supported in IE. :( If you are looking for a solution that works on all browsers have a look at Upload image without submitting form, works on all browsers.

Ishank Gupta

Related articles

Our two bytes give the latest technology trends and information that gives you fair information about the subject.

Web App vs Mobile App: What Should Your Startup Choose?

Web App vs Mobile App: What Should Your Startup Choose?

It is absolutely true that starting a new business is no big deal but what matters is to maintain it and achieve success. Startup businesses have a...
Key Factors to Keep in Mind When Developing a Web Application

Key Factors to Keep in Mind When Developing a Web Application

The growing technology is helping businesses to understand the importance of web application development, as it not only enhances their business gr...
How Long Does it Take to Build a Website?

How Long Does it Take to Build a Website?

To create recognition and identity of your product or service in the market there is a need for online presence. For online presence, you must star...

Cookie Preferences

We use cookies to deliver the best possible experience on our website. To learn more, visit our Privacy Policy. Please accept the cookies for optimal performance.Cookie Notice.