JavaScript-OnMouseOver Navigation wird hinter Iframe angezeigt?
Also, ich habe eine Navigationsleiste mit Klappmenüs (oben) mit CSS gemacht. Nur der InternetExplorer stellt die Klappmenüs nicht da. Deshalb habe ich n Script angefertigt, mit dem sich das Menü Problemlos öffnen lässt. Unter der Navileiste befindet sich eine Iframe mit CSS Rand. Jetzt mein Problem: Das Klappmenü verschwindet im IE (Im IE wird wie vorhin erwähnt, das Menü mit Js und nicht mit Css wie in den anderen Browsern angezeigt) hinter Iframe und dem CSS-Rand. Ich habe das ganze Netz durchsucht, aber bin noch nicht fündig geworden. Vielleicht wisst ihr ja was.
lg fridojet
Ach ja: Hier ist das Iframegerüsst:
<style type="text/css">
h5
{
font-size:12px;font-family:Verdana;
position:absolute;width:860; margin-top:20px; margin-left:10px;
background-color:#cacaca; z-index:1;
}
.div1
{
width:860;
border:3px solid #cacaca;
-moz-border-radius:30px;
-khtml-border-radius:30px;
z-index:1;
}
</style>
<p></p><h5 class="div1" align="center"><br>
<iframe id="mainContent" name="mainContent" onload="resizeMe(this)" src="startseite.html" width="830" scrolling="no" marginwidth="0" marginheight="0" frameborder="0" ></iframe><p></p>
<noscript>
<font size="+4">Fehlermeldung</font>
</noscript>
</h5>
Hier ist das OnMouseOver Navigationsscript was nur im Ie gebraucht wird, weil die Navi im Firefox und Opera usw. mit CSS läuft:
<script type="text/javascript">
// Dynamic Iframe loader
function loadIframe(theURL) {
document.getElementById("mainContent").src=theURL;
}
// resizes Iframe according to content
function resizeMe(obj){
docHeight = mainContent.document.body.scrollHeight
obj.style.height = docHeight + 'px'
}
</script>
Nein Leute, das ist kein Problem der Einstellungen. Ganz sicher
lg
Bitte helft mir weiter!!!
lg
Kommt, ich brauche dringend help. Bitte antwortet!!!