ich versuche mit folgendem skript auf mehrere id's im html-bereich zugreifen.
habs mit folgender version versucht, doch irgendwie funktionierst nicht.
was mache ich falsch???
startList = function(wert) {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("wert");
for (i=0; i<navRoot.childNodes.length; i++) {
node = navRoot.childNodes[i];
if (node.nodeName=="LI") {
node.onmouseover=function() {
this.className+=" over";
}
node.onmouseout=function() {
this.className=this.className.replace(" over", "");
}
}
}
}
}
window.onload= function(){
startList('id1');
startList('id2');
}</script>