M
Marcus
I am after what is probably very basic help. Below is the HTML including the
bit of Java I am trying to understand why its not working. The idea is as
the mouse moves over and off the "button" image changes.
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>(Type a title for your page here)</title>
<meta name="GENERATOR" content="Arachnophilia 4.0">
<meta name="FORMATTER" content="Arachnophilia 4.0">
</head>
<body bgcolor="#ffffff" text="#000000" link="#0000ff" vlink="#800080"
alink="#ff0000">
<a href="messhall.html"
onMouseOver="document.images[1].src='MessHall_on.gif' ;"
onMouseOut="document.images[1].src='MessHall_off.gif' ;"><img
src="MessHall_off.gif" border="0" height="25" width="150"></a><br>
</body>
</html>
What I get is the image in the "off" colour mode, but it doesn't change when
I roll the mouse over the image, will this work? What have I done wrong.
TIA,
Mark
bit of Java I am trying to understand why its not working. The idea is as
the mouse moves over and off the "button" image changes.
<!doctype html public "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>(Type a title for your page here)</title>
<meta name="GENERATOR" content="Arachnophilia 4.0">
<meta name="FORMATTER" content="Arachnophilia 4.0">
</head>
<body bgcolor="#ffffff" text="#000000" link="#0000ff" vlink="#800080"
alink="#ff0000">
<a href="messhall.html"
onMouseOver="document.images[1].src='MessHall_on.gif' ;"
onMouseOut="document.images[1].src='MessHall_off.gif' ;"><img
src="MessHall_off.gif" border="0" height="25" width="150"></a><br>
</body>
</html>
What I get is the image in the "off" colour mode, but it doesn't change when
I roll the mouse over the image, will this work? What have I done wrong.
TIA,
Mark