Click to See Complete Forum and Search --> : changing the mouse arrow to a hand


GoldDog
07-20-2003, 04:20 PM
Is there a way to do it? I have a piece of text that is not an actual link but is using a mouseover effect. It's not clear that clicking on it will initiate an event, so I'd like to get the mouse arrow to change to a hand when the text is moused over.

thanks

pyro
07-20-2003, 04:21 PM
<span onmouseover="this.style.cursor='pointer';" onmouseout="this.style.cursor='default';">text</span>

GoldDog
07-20-2003, 04:37 PM
Very sweet!

Gracias, senor

pyro
07-20-2003, 04:38 PM
You're welcome... :)