How would i upgrade the solution provided in this question How can I create a "Please Wait, Loading..." animation using jQuery?
to work with JQuery 1.9.2?
I can't seem to get it to work. I've tried the following http://jsfiddle.net/VpDUG/2485/
$(document).ajaxStart(function(){ $("body").addClass("loading"); });
$(document).ajaxStart(function(){ $("body").removeClass("loading"); });
but that hasn't worked?