Karl Opitz: «A»-Tag und Layer

Beitrag lesen

Hi,

hier noch der Sourcecode:

<html>
<head>
<title>Untitled Document</title>
<script language="JavaScript">
function showNS(Name)
{
  document.layers["Layer3"].visibility="show";
}
function hideNS(Name)
{
  document.layers["Layer3"].visibility="show";
}
</script>
</head>
<body>
<a href="http://www.darkhorizons.com" onMouseOver="showNS(Layer3)" onMouseOut="hideNS(Layer3)">DarkHorizons</a>

<layer id="layer3" width=200 height=250 visibility=hide bgcolor=#FFFFE0>
Hier steht der Inhalt von Bereich 3.
</layer>

</body>
</html>