Habe ein Problem, das ich aber in diesem noch nachlesen konnte.
habe folgende js-Datei:
<!--
IMG01 = "pointer.gif";
IMG02 = "blank.gif";
function imgover(imgname)
{
imgname.src = IMG01;
}
function imgout(imgname){
imgname.src = IMG02;
}
// -->
<img name="IMG01" src="blank.gif" width=20 height=15 border=0>
<a href="ihr.link" onMouseOver="imgover(IMG01)" onMouseOut="imgout(IMG01)">
Link 1</a>
<br>
<img name="IMG02" src="blank.gif" width=20 height=15 border=0>
<a href="ihr.link" onMouseOver="imgover(IMG02)" onMouseOut="imgout(IMG02)">
Link 2</a>
Die binde ich in die html-Datei ein:
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=iso-8859-1">
<script type="text/javascript" src="dateiname.js"></script>
</head>
<body bgcolor="#f0f0f0">
<script type="text/javascript">
<!--
function imgover(imgname);
//-->
</script>
</body>
</html>
Es funktioniert jedoch nicht. Kann mir jemand sagen, wo ich den Fehler habe?
Danke!