Reputation: 1806
i'm using form with enctype multipart/form-data for uploading photo, so below is my code for normal form submit,
$.ajax({
type: "POST",
url: loadUrl,
cache: false,
success: function(html){
$(outputLocation).html(html);
}
});
how this should alter, so its applicable for multipart/form-data type form in jquery
thanks in advance
Upvotes: 2
Views: 12707
Reputation: 5405
Just check out the below plugin if it helps -
http://www.fyneworks.com/jquery/multiple-file-upload/#tab-Overview
Upvotes: 1