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?
|
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. |
|||||||||||||||
|
|
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. |
|||
|
|
|
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 |
|||
|
|
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. |
|||
|
|
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. |
|||
|
|
