Page 1 of 1

onMouseOver

Posted: Fri Feb 10, 2006 12:28 pm
by shiznatix
I am trying to make a table row turn my mouse cursor to the hand thing like on links when you hover over it because I have a onclick submit.

here is what i have right now (it does not change the cursor though :( )

Code: Select all

<tr style="cursor: hand;" onclick="javascript: document.myform<?= $i ?>.submit()">

Posted: Fri Feb 10, 2006 12:30 pm
by hawleyjr

Posted: Fri Feb 10, 2006 12:41 pm
by josh
There is in early versions of IE though :wink:

Posted: Fri Feb 10, 2006 1:16 pm
by jayshields
pointer The pointer value renders the cursor as an arrow to signify a link.

For Internet Explorer versions 4 and 5, the equivalent property is cursor:hand.
so try pointer instead of hand, jshpro2 is right though.

Posted: Fri Feb 10, 2006 2:38 pm
by Moocat
cursor: pointer

is the hand :)

Posted: Fri Feb 10, 2006 5:09 pm
by raghavan20

Code: Select all

<table>
		<tr><td>hello<td></tr>
		<tr><td 'style = cursor:pointer'>submit<td></tr>

	</table>