Posted by sentinel on 10/10/37 11:25
Here is the probl
i have a button
<center><input class=button type="submit"
value="Login"/></center></form>
and want to replace it with an image
<a href="link.php"><img src="imgs/btn_normal.gif" border="0"
height="25"
onMouseOver="this.src='imgs/btn_hover.gif'"
onMouseOut="this.src='imgs/btn_normal.gif'"
onMouseDown="this.src='imgs/btn_down.gif'"
onMouseUp="this.src='imgs/btn_normal.gif'"/></a><br>
and want that the image still has the same function as the button did
how can i do that?
Thanks.
[Back to original message]
|