This code
$(\"#loading\").ajaxStart(function() {
alert(\"start\");
$(this).show();
});
in my mark-up
&l
I'm not sure if this will fix your issue, but generally I use debug.info('your message')
in combination with the Firebug console instead of alert()
, as alert interrupts your script processing until you dismiss it whereas debug.info is fairly unobtrusive.
You can download the implementation of debug.info here.