[jQuery] Global AJAX events, not working?

[jQuery] Global AJAX events, not working?


I've tried like this:
$("#loading").ajaxStart(function() {
$(this).show();
}).
ajaxComplete(function() {
$(this).hide();
})
I've triple checked the id of loading image and everything, but still
doesn't work.
Any ideas what could be wrong?