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

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?

share|improve this question

4 Answers

up vote 20 down vote accepted

For:

<ul>
  <li>Item 1</li>
  <li>Item 2
    <ul>
      <li>Item 2.1</li>
      <li>Item 2.2</li>
    </ul>
  </li>
  <li>Item 3</li>
</ul>

For example

$("ul > li").addClass("blah");

adds class "blah" to 1 2 and 3 whereas:

$("ul li").addClass("blah");

add class "blah" to every list element.

I'm not sure what you're referring to with < and ? operators.

share|improve this answer
3  
Does ul > li set all of them to "blah"? because you have a sub list which also has li children in a ul. – Nick Berardi Aug 12 '09 at 17:04
3  
> means immediate children, not grandchildren or more. – rpflo Aug 12 '09 at 17:16
3  
ul > li matches the nested lists as well – Ty W Dec 9 '09 at 19:22
3  
You should update your example to have the inner ul as an ol since your current code will not function as you describe (though technically correct). – Joel Potter Dec 9 '09 at 19:28

In CSS, > means "direct child of": only nodes that are direct children are selected.

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.

share|improve this answer

As already mentioned, a space will select any descendant, whereas > will select only immediate children. If you want to select only grandchildren or great-grandchildren, then you could use this:

#foo > * > * > .bar

(all elements with class "bar" which are great grandchildren of the element with id "foo")

share|improve this answer

look at this..

$(".testit > a") //match the first <a> tag below
$(".testit a") // matches all <a> tag below

<p class="testit">
  <a href="#">All the rules will match this</a>
  <span>
    <a href="#">second rule can only select this</a>
  </span>
</p>
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.