Form buttom with mouseovers

wxdqz

New Member
Hi All I'm trying to do a mouseover for a form buttom and can't seen to get it to work. I can do the mouseover or the buttom but not both. Below is the mouseover Script and the button script. Any help will be great. Is it evern Possible?

Alex
Button Script
<INPUT TYPE="image" NAME="button:s1" src=http://www.webdeveloper.com/forum/archive/index.php/"/myesolutions4u/_uimages/checkit.gif" border="0" ALT="Check IT">

Mouseover Script
<A onMouseOver="if (document.images) document.checkit.src=/_uimages/checkit1.gif';" onMouseOut="if (document.images) document.checkit.src=/_uimages/checkit.gif';"><img src=http://www.webdeveloper.com/forum/archive/index.php/"/_uimages/checkit.gif" width=90 height=21 alt="check it" name="checkit" border=0>



<script language="javascript" type="text/javascript">
<!--
if (document.images) {var checkit=new Image(); checkit.src="http://my.register.com/myesolutions4u/_uimages/checkit1.gif";}
//-->
</script>
 
Back
Top