What's the difference between the space and > selectors? And possibly related, how can I look for something that's the direct child of something else, and not lower down the descendant line?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
For:
For example
adds class "blah" to 1 2 and 3 whereas:
add class "blah" to every list element. I'm not sure what you're referring to with < and ? operators. |
|||||||||||||||||
|
|
In CSS, While a space means "any descendant of": direct children and children of those children could be selected. I would wager jQuery uses the same convention. |
||||
|
|
|
As already mentioned, a space will select any descendant, whereas
(all elements with class "bar" which are great grandchildren of the element with id "foo") |
|||
|
|
|
look at this..
|
|||
|
|