Hi,
ich möchte mir ein dynamisches Menü erstellen (wenn ich mit der Maus den Link berühre, kommt ein Layer). Es funktioniert auch alles, außer dass in Firefox der Layer weiter unten ist und wenn man über den Layer fährt verschwindet er wieder, er soll aber bleiben.
>>Testlink<<
HTML
<html xmlns="[URL]http://www.w3.org/1999/xhtml[/URL]">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" /
<title>HTML/Javascript</title>
</head>
<script language="javascript" type="text/javascript">
function menuaus ()
{
window.document.getElementById("haupt").innerHTML="<div id='haupt' ><a href='javascript:void()' onmouseout='menuein()'>Hauptmenü</a><div style='position: absolute; left: 9px; top: 52px; width: 150px; height: 21px; background-color: #00FF00'>Eine Überschrift</div></div>";
}
function menuein()
{
window.document.getElementById("haupt").innerHTML="<div id='haupt' ><a href='javascript:void()' onmouseover='menuaus()'>Hauptmenü</a></div>";
}
</script>
<body>
<div id='haupt' ><a href="javascript:void()" onmouseover="menuaus()">Hauptmenü</a></div>
hkjhgjg
</body>
</html>
Alles anzeigen
Danke im Voraus