Johannes: Menü in DHTML

Beitrag lesen

Herzlichsten Danke

Lieben Gruß
JOhannes

Hier, hab mal ein wenig rumgedoktort. Funktioniert jetzt soweit...;)

<html><head><title>visibility</title>
<script language="JavaScript" type="text/javascript">
<!--
function show(wet) {
 if(wet == 19) {
   document.getElementById("Ueberschrift").style.visibility = "visible";
   document.getElementById("Ueberschrift").style.zindex = 1;
   document.getElementById("ist").style.zindex = 0;
 }
}

function del(iw) {

iw.style.visibility = "hidden";

}

//-->
</script>
</head><body bgcolor="FFFFFF" text="#000000">

<h1  style="visibility:hidden">Die &Uuml;berschrift zum Text</h1>
<p>Hier der Text. Aber fehlt da nicht was?</p>

<div id="ist" onMouseover="show(19)" style="background:red; border:solid 2px blue; width:70px; position:absolute;
 top:120px; left:10px;" >Anzeigen!

<div id="Ueberschrift"
     style="position:absolute; top:10px; left:10px; width:80px; height:150px; visibility:hidden; background:red;" onmouseout="del(this)">
 <a href="test.html">Uhrzeit anzeigen</a>
 <a href="http://www.google.de">Google</a>
</div></div>

</body></html>