Click to See Complete Forum and Search --> : images and links


weee
05-20-2004, 04:43 PM
Hi.

I have two link and I want to make it that way that whenver some one got his mouse on one of'em there's an image appear somewhere on the screen.

A different image for each link.

How?

Thanks

Khalid Ali
05-20-2004, 04:50 PM
some things along http://www.webapplikations.com/pages/html_js/image_examples/DisplayTwoImagesClickOver.htmlthese lines may work for you

Virbatem
05-20-2004, 04:54 PM
Hi weee: "Supreme Master of the Web"

(I wonder what that makes me)

<img src="img.jpg" name="change">

<a href="link1.htm" onmouseover="document.change.src='img1.jpg';">ONE</a>

<a href="link2.htm" onmouseover="document.change.src='img2.jpg';">TWO</a>

Dion...
[o]


Originally posted by weee
Hi.

I have two link and I want to make it that way that whenver some one got his mouse on one of'em there's an image appear somewhere on the screen.

A different image for each link.

How?

Thanks

weee
05-20-2004, 06:21 PM
!