I have the following:
$('body, a').addClass('cursor-wait');
for (var I=0, L = myArray.length; I < L; I++) {
// tight loop here
}
$('body, a').removeClass('cursor-wait');
But I'm not sure the cursor:wait icon is showing up immediately.
Q: Is there a way to tell say "DoEvents" in JavaScript, such that I know that the DOM is being updated before it goes into the loop?
Maybe using the setTimeout method.