hab ein problem,
das script finktioniert zwar aber auf der seite wird unten ein fehler angezeigt.
weiß leider nicht woran es liegt. müsste bei function update sein.
danke schon mal für eure hilfe.
MfG Hacker676
------------------- Quelltext ---------------
<html>
<head>
<title>Unbenanntes Dokument</title>
<style type="text/css">
.tooltip {
DISPLAY: none;
POSITION: absolute;
BACKGROUND-COLOR: #E1E1FF;
border:1px solid;
border-color:#047A84;
color:#047A84;
}
</style>
<script type="text/javascript">
function showWMTT(id) {
wmtt = document.getElementById(id);
wmtt.style.display = "block"
}
document.onmousemove = updateWMTT;
function updateWMTT(e) {
x = (document.all) ? window.event.x + document.body.scrollLeft : e.pageX;
y = (document.all) ? window.event.y + document.body.scrollTop : e.pageY;
if (wmtt != null) {
wmtt.style.left = (x - 05) + "px";
wmtt.style.top = (y + 20) + "px";
}
}
function hideWMTT() {
wmtt.style.display = "none";
}
if(window.navigator.systemLanguage && !window.navigator.language) {
function hoverIE() {
var LI = document.getElementById("Navigation").firstChild;
do {
if (sucheUL(LI.firstChild)) {
LI.onmouseover=einblenden; LI.onmouseout=ausblenden;
}
LI = LI.nextSibling;
}
while(LI);
}
function sucheUL(UL) {
do {
if(UL) UL = UL.nextSibling;
if(UL && UL.nodeName == "UL") return UL;
}
while(UL);
return false;
}
function einblenden() {
var UL = sucheUL(this.firstChild);
UL.style.display = "block";
}
function ausblenden() {
sucheUL(this.firstChild).style.display = "none";
}
window.onload=hoverIE;
}
function Spring() {
var welcherLink = document.Springen.URLs.selectedIndex;
document.Springen.URLs.selectedIndex = "0";
if(welcherLink > "0"){
top.location.href = document.Springen.URLs.options[welcherLink].value;
}
}
</script>
</head>
<body>
<br>
<br>
<br>
<br>
<a href="#" onmouseover="showWMTT('1')" onmouseout="hideWMTT()">aaaaaaaaaaaaaaaa</a><br>
<DIV class=tooltip id=1><B>TEXT</B></DIV>
<br>
</body>
</html>