ForevaLili327
02-11-2003, 09:31 PM
How do u do them I don't understand Lissa's way I dunno why but EVERYTIME my mouse goes over the image there is a red x can someone tell me why? Here is the script:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<script language="JavaScript">
<!-- Hide the script from old browsers --
img0_on = new Image(133,64);
img0_on.src="mee.gif";
img0_off = new Image(60,64);
img0_off.src="Nutme.gif";
function over_image(parm_name)
{
document[parm_name].src = eval(parm_name + "_on.src");
}
function off_image(parm_name)
{
document[parm_name].src = eval(parm_name + "_off.src");
}
// --End Hiding Here -->
</script>
</head>
<body>
<a href="www.geocities.com/lil_lili_li/Me.html" onmouseover="over_image('img0');" onmouseout="off_image('img0')"> <img src="Nutme.gif" border="0" name="img0"> </a>
</body>
</html>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<script language="JavaScript">
<!-- Hide the script from old browsers --
img0_on = new Image(133,64);
img0_on.src="mee.gif";
img0_off = new Image(60,64);
img0_off.src="Nutme.gif";
function over_image(parm_name)
{
document[parm_name].src = eval(parm_name + "_on.src");
}
function off_image(parm_name)
{
document[parm_name].src = eval(parm_name + "_off.src");
}
// --End Hiding Here -->
</script>
</head>
<body>
<a href="www.geocities.com/lil_lili_li/Me.html" onmouseover="over_image('img0');" onmouseout="off_image('img0')"> <img src="Nutme.gif" border="0" name="img0"> </a>
</body>
</html>