View Full Version : Mouseover help....


ForevaLili327
02-12-2003, 10:34 PM
Where do I put the link to the mouseover like the page that I want it to go to...here is the script..

<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">

<html>
<head>
<SCRIPT LANGUAGE="JavaScript">
<!-- ;
var img1on = new Image();
img1on.src = "mee.gif";
var img1off = new Image();
img1off.src = "Nutme.gif";
// end hide -->
</SCRIPT>




</head>

<body>
<A HREF = "#"
onMouseOver = "document.img1.src = img1on.src;"
onMouseOut = "document.img1.src = img1off.src;">
<IMG NAME = "img1" SRC="Nutme.gif" border = 0>
</A>


</body>
</html>

pb&j
02-12-2003, 11:23 PM
Originally posted by ForevaLili327
<A HREF = "#"
onMouseOver = "document.img1.src = img1on.src;"
onMouseOut = "document.img1.src = img1off.src;">

ForevaLili327
02-13-2003, 12:28 AM
Thanx!