Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

change mouse pointer to hourglass 1

Status
Not open for further replies.

gojohnnygogogogo

Programmer
May 22, 2002
161
GB
hello all,
How can I change the mouse pointer to an hour glass when some sql is running , then back to the arrow after the sql has run.
?
 
This will be similar to the code I posted not to lonbg ago about showing a wait message while the page is loading, except instead of showing a wait message what you will want to do is create a div thats the size of the screen, and use CSS to change the cursor in that div. Then when the page loads make the DIV go away.
the original thread is here:thread333-410519

What you will want to do is change the inline style for the div element like so:
Code:
<div id=&quot;loadMessage&quot; style=&quot;width:1000;height:800;cursor:wait;&quot;>

That should be what your looking for :)

-Tarwn --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- ---
This space has nothing in it, it's all ni your imagination
 
Thanks :) --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- --- ---
This space has nothing in it, it's all ni your imagination
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top