[jQuery] Elegant Loading Indicator

[jQuery] Elegant Loading Indicator

$(document.body).ajaxStart(function() {
this.style.cursor = "wait";
}).ajaxStop(function() {
this.style.cursor = "default";
});
I like the unobtrusive simplicity.
--
Jörn Zaefferer
http://bassistance.de
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/