I found some solution to it using jquery plugin formajax, did well in computers and laptop but got problem in ipad, tablet , mobiles. Is there is anyway to do so, currently i am doing like this
$(document).on('submit','#mulitpartform',function(e){
e.preventDefault();
$('#multipartform').ajaxSubmit({
'method' : "url",
beforeSend : function(){
//overlay
},
success : function(responseText)
{
// stuffs
},
error : function()
{
},
complete : function()
{
//trunoff overlay
}
});
});
it works fine in laptop,computers but experience problem in mobile devices; what should i do to get out of it.