How to handle image uploads with jquery post submit

tej.tan picture tej.tan · Jul 6, 2011 · Viewed 13k times · Source

I have the html form and i am submittng the form with jquery with following

var queryString = $('.form1').formSerialize(); 
 $.post('book/create/', queryString); 

But if i submit form without ajax then image gets uploaded by django function

Now the problem is , it is ignoring the file fields. what should i do

Answer

Balanivash picture Balanivash · Jul 6, 2011

You cannot upload files using XMLHttpRequest (AJAX).But you can try using some of the Ajax JQuery plugins to upload files

Also Check how-can-i-upload-files-asynchronously-with-jquery