Re: OnMouseOver
From Jim on 5 Feb '99
replying to OnMouseOver posted by Mike
-
>Someone asked me to make the links on the page "light up" when you pass over them.
>I was wondering if I can either get the mouseover command to wrk without a javascript,
>or there is another command to do that.
It seems rather pointless to me, but here's how to do it. You'll need
two versions of your graphic; one switched "on", the other "off".
<A HREF="page.html" onmouseover="document.page.src='lit_up.gif'"
onmouseout="document.page.src='normal.gif'"><IMG SRC="normal.gif" border=0></A>
|