hi expert, 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