I have my document with lots of controls and I'd like to have the cursor use the 'wait' style but I've not found any way to have it like this for everything in the page.
I can always set anything to use the following while processing something
object.style.cursor = 'wait';
then when finished
object.style.cursor = 'default';
but even if my object = document.body; if the cursor is over anything else, it'll go back to default until there's nothing over the body.
Any ideas?
-----------------------------------
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rich Cook
I can always set anything to use the following while processing something
object.style.cursor = 'wait';
then when finished
object.style.cursor = 'default';
but even if my object = document.body; if the cursor is over anything else, it'll go back to default until there's nothing over the body.
Any ideas?
-----------------------------------
"Programming today is a race between software engineers striving to build bigger and better idiot-proof programs, and the Universe trying to produce bigger and better idiots. So far, the Universe is winning." - Rich Cook