gif image is not animating in Firefox(21.0) and IE(All Versions) Browsers while redirecting the page.The following code i'm using in usercontrol
<form method="post" name="frmhotelsearch" onsubmit="ShowProgress()" id="frm_<%=(int)Model.SearchProductType%>_Search" action="/Product/ProductResults">
-----Form code here----
</form>
jquery function :
var myPicProgress = new Image();
myPicProgress.src = "../../Frontend/b2b/images/busy.gif";
function ShowProgress()
{
$.blockUI({ message: '<h1><img src=' + myPicProgress.src + ' />' + 'Just a Moment' + '</h1>', showOverlay: false }).on('beforeload', function () { $.blockUI(); });
}
Please give a suitable idea for this issue. i have wasted lots of time for this.