In JQuery, does the advanced CSS 3 selection style work in all browsers?
Posted
by SLC
on Stack Overflow
See other posts from Stack Overflow
or by SLC
Published on 2010-05-25T10:49:27Z
Indexed on
2010/05/25
10:51 UTC
Read the original article
Hit count: 170
jQuery
|css-selectors
I'm watching a tutorial learning JQuery for the first time, and it seems you can select items using pretty much CSS, like:
$('ul li:nth-child(3)').addClass('biscuits');
Is that kind of selector going to work on all browsers, or just ones that support CSS 3 ?
© Stack Overflow or respective owner