jquery form submission prevention using e.preventDefault() is not working in multipart form submission ( when im using ajax to submit ). Is there any  way to solve it ?
Code
$('.imgChange').submit( function(e){
    load('do_upload.php',$(this).serialize());
    e.preventDefault();
});
 
    