Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am making my way through Lynda.com's JS tutorial, and they have a whole chapter on image rollevers for buttons. Why would I use JS when I could just use CSS-- to create image rollevers?

share|improve this question
It might be because that tutorial is freaking old. – metrobalderas Dec 14 '10 at 21:30
javascript provided a way to implement image rollovers before CSS existed and/or was widely adopted (we're talking circa 1998). Now days, you should always use CSS for this sort of thing - I can't think of a single reason to favor Javascript instead. – Lee Dec 14 '10 at 21:33
I can find one - crossbrowser compatibility. – easwee Dec 14 '10 at 21:46
1  
@easwee - Cross browser compatibility? Unless you're talking about IE 5 or less then this isn't a concern in the lease sense. The number of IE 5 users or less is monumentally small. If you're arguing that javascript rollovers should be used for cross-browser compatibility, then you're pretty much claiming that CSS is useless altogether! – Qix Dec 14 '10 at 22:01
@easwee I agree with @Di-0xide. You're effectively arguing against using any CSS when a "cross-browser" JS alternative exists. – meagar Dec 14 '10 at 22:42
show 5 more comments

5 Answers

Why would I use JS when I could just use CSS-- to create image rollevers?

You shouldn't, it sounds like the tutorial may be simply using it as an example to teach you JS. There is no case where you should prefer JS to CSS when identical results can be achieved with CSS.

share|improve this answer
Awesome. . . at least my gut was right. . . I'm thinking this is way to much work here, when I can just use psuedo classes :-) – zkidd Dec 14 '10 at 21:32
1  
Note - not all psuedo classes work in every browser - js does. – easwee Dec 14 '10 at 21:45
@easwee - True, however for a CSS rollover all you really need is the hover psudo-class, which has been supported since CSS1, and consequently almost every browser that supports CSS. – Qix Dec 14 '10 at 21:59
1  
@easwee That's specifically why I said when identical results can be achieved. Also, JS doesn't work in every browser, and while many people browse with JS turned off either explicitly or via something like NoScript, I don't think anybody browses with CSS turned off. – meagar Dec 14 '10 at 22:37
IE6 supports :hover only on <a> - at work we still have to support that so in case i need rollover on a div i have to use js. In case you don't care about old browsers than obviously use css only. The amount of users who browse without js on is less than 1% - and it's not that it doesn't work - they choose to turn it off (and they can turn off css too). But don't get me wrong - if it can be done with css - do it with css. – easwee Dec 16 '10 at 15:23
show 1 more comment

At the time of those writings, the :hover pseudo class did not exist and/or was not supported by all browsers. Therefore, javascript was the preferred method of achieving the rollover effect.

Nowadays the CSS :hover pseudo class exists and is supported in all major browsers; therefore, the CSS method is preferred.

share|improve this answer

Sometimes you want to change a content image on rollover and not a background image (and putting two versions of a content image next to each other then using :hover to hide and show them puts a foot into the realm of "content not making sense without the presentation layer")

share|improve this answer
Dorward - Interesting theory. While this may not have been the reasoning behind those specific tutorials, it is definitely something to think about. Of course this would be on a per-project basis; it's up to the designer to decide which method is best suited for the site -- either content-aware or visually-aware. – Qix Dec 16 '10 at 22:24

Only reason I can think (other than the ones already mentioned) is that using :hover pseudo-selector on non-anchor elements, cause performance problems in IE7 and IE8 when a strict doctype is used.

reference: http://code.google.com/speed/page-speed/docs/rendering.html#UseEfficientCSSSelectors

But in my opinion, that still isn't an enough reason to use JS over CSS.

share|improve this answer
I agree. Strict doctypes are, in my view, used for extremely basic or project-specific HTML that needs to not deviate in the least sense (like embedded HTML displays, etc.) – Qix Dec 16 '10 at 22:22

I think this answer css hover vs. javascript mouseover of kingjeffrey is great. I would prefer this method because users with js turned off can still use the menu with most browers and users using old browsers still have a functional menu if they did not turn off js. I think this solution would make the menu usable for most cases.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.