/    Sign up×
Community /Pin to ProfileBookmark

Why is this happening

I have a web site which works perfectly in IE, bnbut blowws up in any other browser. When I run it througha browser, I get an error in my javascript. Is this right?
<script type=”text/javascript”>
sfHover = function() {
var sfEls = document.getElementById(“nav”).getElementsByTagName(“LI”);
for (var i=0; i<sfEls.length; i++) {
sfEls[i].onmouseover=function() {
this.className+=” sfhover”;
}
sfEls[i].onmouseout=function() {
this.className=this.className.replace(new RegExp(” sfhoverb”), “”);
}
}
}
if (window.attachEvent) window.attachEvent(“onload”, sfHover);
</script>
If you want to see it in action, its at [url]www.lukesplace.com[/url],
Thanks

to post a comment
JavaScript

1 Comments(s)

Copy linkTweet thisAlerts:
@KorAug 11.2005 — attachEvent is an IE only method. Anyway, the line

if (window.attachEvent) window.attachEvent("onload", sfHover);

is somehow usless. Use instead a simply:

onload=sfHover;
×

Success!

Help @lukeurtnowski spread the word by sharing this article on Twitter...

Tweet This
Sign in
Forgot password?
Sign in with TwitchSign in with GithubCreate Account
about: ({
version: 0.1.9 BETA 6.1,
whats_new: community page,
up_next: more Davinci•003 tasks,
coming_soon: events calendar,
social: @webDeveloperHQ
});

legal: ({
terms: of use,
privacy: policy
});
changelog: (
version: 0.1.9,
notes: added community page

version: 0.1.8,
notes: added Davinci•003

version: 0.1.7,
notes: upvote answers to bounties

version: 0.1.6,
notes: article editor refresh
)...
recent_tips: (
tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @meenaratha,
tipped: article
amount: 1000 SATS,

tipper: @AriseFacilitySolutions09,
tipped: article
amount: 1000 SATS,
)...