
Originally Posted by
rangana
How about giving me a chance to give you these steps:
This has helped, but need to change it back to the default when mouse-out or mouse-off.
Code:
If this was the contact us page then the default image would be ;
<div id="hold"><img src="img/contactus.jpg" /><br />Contact us.</div>
You mouse-over to see other images when you mouse-out it resets to the default image.
Do I add;
a[i].onmouseout=function(){
Is there a method to show the default image of that page?
Edit:
Solved with javascript;
==
function showIt(imgsrc){
document.getElementById('imgshow').src=imgsrc;
}
function hideIt(){
document.getElementById('imgshow').src="images/contact.jpg";
}
==
Thanks, cheers.
Bookmarks