I have recently been trying "when hovering over a hyperlink bring up a picture
next to it" but haven't been sucessful. Please can you help. Thanks.
Printable View
I have recently been trying "when hovering over a hyperlink bring up a picture
next to it" but haven't been sucessful. Please can you help. Thanks.
Here's an example taken from Negrino and Smith's book "Javascript for the
World Wide Web". (They call it rollover, not hover.)
<A HREF="next.html" onMouseover="document.arrow.src='images/redArrow.gif'"
onMouseout="document.arrow.src='images/blueArrow.gif'">
<IMG SRC="images/blueArrow.gif" width=147 height=82 border=0 name="arrow">
</A>
This is supposed to replace the blue arrow image with the red arrow image
when the mouse moves over it. They also warn that it won't work if you
forget the NAME attribute of the IMG tag. I know this doesn't exactly
answer your question but maybe you can take it from here.
PC2
Milz <milz240286@hotmail.com> wrote in message
news:3a92e507$1@news.devx.com...
>
> I have recently been trying "when hovering over a hyperlink bring up a
picture
> next to it" but haven't been sucessful. Please can you help. Thanks.