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 IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Is there any way to hide the cursor/(mouse pointer)?

Status
Not open for further replies.

peitzza

Technical User
Apr 13, 2000
80
US
Is there any way to hide the cursor/(mouse pointer) on a page with Java script?

or can someone tell me how to change the look of it so it's REALLY small?

any help would be greatly appreciated! [sig]<p>Peter Heaton<br><a href=mailto:heaton@characterlink.net>heaton@characterlink.net</a><br><a href= it how ever you want</a><br> [/sig]
 
There is a way... sort of. If you are on a company intranet the perhaps you can send out a package of cursors. IE and NN use the system cursors of your OS. If your collection of icons has say a crosshair cursor that is different from the norm (invisible) then the browser will show that cursor. You could use MicroAngelo to create a .cur file for the crosshair cursor and have it available as a file on your site with instructions on how to install (or perhaps a program to do it for them). Here is how you apply it to the page (IE only as it uses CSS)...

-Rob

Code:
<html>
<head>
<style type=&quot;text/css&quot;>
 BODY{cursor:crosshair}
 .showCursor{cursor:hand}
</style>
<body>
 <H3 onMouseOver=&quot;this.className='showCursor'&quot;>Hover over this</H3>
</body>
</html>
[sig][/sig]
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top