Click to See Complete Forum and Search --> : changing mouse's icon


monam
08-06-2003, 01:43 AM
hi
how can I change the icon of mouse pointer when I click some especial places by javascript?

Gollum
08-06-2003, 01:48 AM
It's done with style. e.g.

<div style="cursor:hand;">See the hand when you mouseover?</div>

monam
08-06-2003, 06:37 AM
would u please tell me how can i find other values for "cursor" property of style?

pyro
08-06-2003, 07:22 AM
You can find them at http://www.w3.org/TR/REC-CSS2/ui.html#cursor-props, where you'll see that "hand" is not a valid property, and won't work in browsers other than IE. Please use "pointer" instead.