Page is a not externally linkable
- Code, Content, and Presentation
-- CSS
---- Image Hover which links to page problem


Tzakuk - 3:52 pm on Jun 6, 2012 (gmt 0)


You could use something like this:

<head>
<script type="text/javascript">

function alternateImage() {
document.getElementById("yourImageID").src = "alternateImage.jpg";
}
function defaultImage() {
document.getElementById("yourImageID").src = "yourDefaultImage.jpg";
}

</script>
</head>

<body>
<a href="#" onmouseover="alternateImage();" onmouseout="defaultImage();" ><img id="yourImageID" src="yourDefaultImage.jpg" /></a>
</body>


Thread source:: http://www.webmasterworld.com/css/4460737.htm
Brought to you by WebmasterWorld: http://www.webmasterworld.com