March 23, 2002 - Displaying An Hourglass Cursor While Waiting
March 23, 2002 Displaying An Hourglass Cursor While Waiting Tips: March 2002
Yehuda Shiran, Ph.D.
|
"wait"
to the cursor property:
document.body.style.cursor = "wait";
You return the cursor back to normal by assigning the string "default"
to the cursor property:
document.body.style.cursor = "default";
Let's try it. Click here to turn on the hourglass. Move away from the link so the hourglass will be appreciated. Click here to stop it. This tip is supported in IE 5.5 and up.