How to set the cursor to wait?

How to set the cursor to wait?

View Answers

November 10, 2010 at 11:23 AM

We can set the cursor to wait by using following code-

document.body.style.cursor = "wait";

The full code is as-

<body>
<script language="Javascript">
function ChangeCursor() {
    document.body.style.cursor = 'wait';
}
function RestoreCursor() {
    document.body.style.cursor = 'default';
}
</script>
<input type="button" onclick="ChangeCursor()"
value="Change Cursor to wait" />
<input type="button" onclick="RestoreCursor()"
value="Default" />
</body>









Related Tutorials/Questions & Answers:
Advertisements