sfHover = function() {
var sfEls = document.getElementById("fav").getElementsByTagName("LI");
for (var i=0; i
sfEls[i].onmouseover=function() {
this.className+=" sfhover";
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
}
}
}
if (window.attachEvent) window.attachEvent("onload", sfHover)
That's what comes out on debug...it's the second line, and it's saying that document.getElementById(') is null. Sorry bout the formatting. posted by graymouser at 12:57 PM on September 29, 2006
Your error is caused due to a faulty browser. You're supposed to be using FireFox. posted by Eideteker at 3:47 PM on September 29, 2006
Ok, now I feel bad because there's been no follow-up. posted by Eideteker at 3:05 PM on September 30, 2006
« Older If you can't be bothered to pu... | What's the character limit on ... Newer »
posted by graymouser at 12:57 PM on September 29, 2006