skip to Main Content

Firefox hangs on a long lasting operation – Jquery

I have an MVC application and I am using a gif to indicate loading by using JQuery. The code below works okay on Chrome. // show loading window.parent.loading(true); $.get('@Url.Action("getUserAccounts")', function (data) { $("#usersAccountsDiv").html(data); window.parent.resizeIframe(); }); However, in Firefox, the loading…

VIEW QUESTION
Back To Top
Search