Set Cursor To Hourglass
Join the DZone community and get the full member experience.
Join For Free// Sets Mouse Cursor to Hourglass using Javascript
//Set cursor to hourglass
document.body.style.cursor = "wait";
//Turn hourglass off
document.body.style.cursor = "default";
Opinions expressed by DZone contributors are their own.
Comments