[thelist] Suckerfish and IE 5 Mac

Bruce Gilbert webguync at gmail.com
Mon Oct 24 12:13:02 CDT 2005


I can't remember what I would need to add to the JS to ge tthe suckerfish
menu to work on a Mac in IE5.
 It works on the PC and here is what I am using:
 startList = function() {
if (document.all&&document.getElementById) {
navRoot = document.getElementById("nav");
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=startList;
 any help is greatly appreciated!!!

--
::Bruce::



More information about the thelist mailing list