Feedback on: irt.org FAQ Knowledge Base Q952
Technical:
Too technical
Comments:
I've tried everything to get this code to work but nothing seems to help. I'd appreciate any help you can give me. Below is the code.
<html>
<head>
<script language="JavaScript">
</script>
</head>
<body bgcolor="black">
<a href="programs.htm" onMouseOver="change('image','on')" onMouseOut="change('image','off')"><img name="programs" src="programs1.gif" width="200" height="25" border="0" alt="Programs"></a>
</body>
</html>
Comments:
If you have the image in a layer (positioned div is a layer too)
the for netscape to work you want
onMouseOver="change(document,'image','on')" onMouseOut="change(document,'image','off')"
and change to
function change(doc,image,ext) ...
if (document.images)
doc.images[image].src=.....