Hallo alle
kann mir von euch einer sagen warum folgender Quelltext nicht funktioniert????
<html>
<head>
<title>Verwiese</title>
<script language="JavaScript">
var inaktiv="bild1";
function Wechsel(bildname,zustand)
{
if (inaktiv!=bildname)
{
if (zustand==1) document[bildname].src =bildname+"hom-on.gif";
if (zustand==2) document[bildname].src =bildname+"hom.gif";
if (zustand==3) {
document[inaktiv].src =inaktiv+"hom.gif";
document[bildname].src = bildname+"hom-clk.gif";
inaktiv=bildname; }
}
return true; }
</script>
</head>
<body>
<a href="home.htm" target="rechts" onMouseOver="Wechsel('bild1',1);" onMouseOut="Wechsel('bild1',2);" onClick="Wechsel('bild1',3)">
<img src="hom.gif" name="bild1" border="0" alt="Home"></a>
</body>
</html>
Bei mir wird nur der Button angezeigt wenn man drüberfährt oder darauf klickt passiert nichts.
Danke für eure Hilfe.
Philip