16
votes
How do you test if something is hidden in jQuery?
You can use the "hidden" and "visible" selectors.
$(element:hidden)
http://docs.jquery.com/Selecto …
9
votes
Select all child elements except the first
You should be able to use the "not" and "first child" selectors.
$("li:not(:first-child)").addClass("something");
…
3
votes
Select all child elements except the first
Based on my totally unscientific analysis of the four methods here, it looks like there's not a lot of speed difference among them. I ran each on a page containing a series of unordered lists of va …
