|
Hello all, I'm working on a project for a class, which is required to validate in strict 1.0, and I was wondering if any one could help me fix my error.
I am trying to use the onmouse commands to create a rollover effect, by using document.name, I forgot though that img's can't use the name element anymore, so I was wondering if any one knew an easy way to resolve this? Thanks here is the code:
<a href="http://www.google.com" onmouseover="document.himage.src='button2.gif';" onmouseout="document.himage.src='button1.gif';">
<img style="border:0;" src="button1.gif" name="himage" alt="Home button" />
|