Hi, wanted to know if there was a way to make a mouseover command perform 2 tasks?
I want it to change the image that is being mouseovered and I also want another image to appear in anoter location on the page.
I can make it do one or the other but not both - can this be done?
Here is what I have so far...
Thanks for any input.
(I am hoping to use this as part of my template for ebay - so minimal java scripting is necessary - if anyone knows how to do this w/out using Java - please let me know!)
Thanks!
Sophie
I want it to change the image that is being mouseovered and I also want another image to appear in anoter location on the page.
I can make it do one or the other but not both - can this be done?
Here is what I have so far...
Code:
<body> <script language="javascript"> function ShowPic3(sImage) { sImage = "http://i157.photobucket.com/albums/t58/olivas_enterprises/" + sImage + ".jpg"; document.ShowRoom3.src = sImage; } </script> <a onmouseover="ShowPic3('LPM')" href="http://i157.photobucket.com/albums/t58/olivas_enterprises/LPM.jpg" alt="Payment Methods" A ONMOUSEOVER= "POLICIES('PAYMENTS')" href="http://i157.photobucket.com/albums/t58/olivas_enterprises/LOGOS/PAYMENTS" alt="Payment Methods" onMouseOut="ShowPic3('DPM')" href="http://i157.photobucket.com/albums/t58/olivas_enterprises/DPM.jpg" alt="Payment Methods"> <img style="width: 128; height: 31" img border="0" src="http://i157.photobucket.com/albums/t58/olivas_enterprises/DPM.jpg" name="ShowRoom3"></a> </body> </html>
(I am hoping to use this as part of my template for ebay - so minimal java scripting is necessary - if anyone knows how to do this w/out using Java - please let me know!)
Thanks!
Sophie
Comment