-
Hi!!!
Why does the "hand" over the three links only shows over the last link, not over the first two??? How can I fix it???
Sorry for my bad language, I hope you understand.
Here is the code:
<td align="center"><img src="picture1.gif" border="0" value="Tillbaka" onmouseup="javascript:history.back();"></td>
<td align="center"><img src="picture2.gif" border="0" value="Radera order" onmouseup="radera_order();"></td>
<td align="center"><input type="Image" src="picture3.gif" border="0" value="Beställ artiklar"></td>
-
Try changing the onMouseUp to onMouseOver or onMouseDown... that should do something... :)
-
You can use CSS to change the mouse pointer:
Code:
style="cursor : hand;"
I'm not sure if it works for other browsers than IE, though.
-
Perfect!!!
Thank you JoshT.