Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
style="cursor:wait;"
<html>
<head>
<title>Change Cursor</title>
<meta name="GENERATOR" content="Microsoft FrontPage 5.0">
<meta name="ProgId" content="FrontPage.Editor.Document">
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<script language="vbscript">
sub waiton_OnClick
dim objDiv
set objDiv = document.getElementById ("waiter")
objDiv.style.cursor = "wait"
' Need to go through all the children too but
' we will just do the on button
set objDiv = document.getElementById ("waiton")
objDiv.style.cursor = "wait"
end sub
sub waitoff_OnClick
dim objDiv
set objDiv = document.getElementById ("waiter")
objDiv.style.cursor = "default"
' Need to go through all the children too but
' we will just do the on button
set objDiv = document.getElementById ("waiton")
objDiv.style.cursor = "default"
end sub
</script>
</head>
<body id="waiter">
<p>Some text</p>
<p>Talk to me <input id=Text1 type=text></p>
<p>
<input type="button" name="waiton" value="Wait on">
<input type="button" name="waitoff" value="Wait off">
</p>
</body>
</html>