I had this in jquery version 1.3
// ajax requests would get this method
$().ajaxStart(function (e)
{
$('body').css('cursor', 'progress');
});
Can you still do this. Every time I look though firebug and put break points these never get run. Do I have to move them now to the ajaxSetup?
From the docs:
Could it be that you have an Ajax request in progress?
EDIT: possibly use
$(document).ajaxStarttoo instead of$().ajaxStart, saw this mentioned in the comments on the jQuery site.