How to change mouse cursor?

liunx

Guest
How can I change the mouse cursor on the "OnMouseOver" event?<!--content-->You can change the attributes of your cursor by adding a simple style tag to your link reference. Your cursor will change to the new one every time someone puts their cursor over your image:<br />
<br />
<br />
Example:<br />
<br />
<a href=http://www.htmlforums.com/archive/index.php/"http://address.html" style="cursor:crosshair"><img src="filename.gif"></a><!--content-->... that code will help in the page I'm making<!--content-->Thanks! It's always nice to hear that I'd helped someone!<!--content-->ok <!-- w --><a class="postlink" href="http://www.v0ided.tk">www.v0ided.tk</a><!-- w --> is my website and i need some help. i got the link over = move.<br />
but how do i make it so its permanant on the whole page... like i mean move the mouse any where and its the move cursor. How do i do that?<!--content-->you should be able to do it in java-script with a mouseOver/mouseOut script...<br />
<br />
try here planetsource (<!-- m --><a class="postlink" href="http://www.planetsourcecode.com/">http://www.planetsourcecode.com/</a><!-- m -->) <br />
<br />
or you can use the style tag but this will only work with IE6, not sure with NN/OPERA...<br />
<br />
<STYLE TYPE="text/css"><br />
<!-- BODY{CURSOR: url(cursors\grey.cur);} --><br />
</STYLE><br />
<br />
if you have multiple pages you will need to add it to each page...<!--content-->
 
Back
Top