Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

suppose I have a html markup like this:

<div>
    <p>
       this is the parent
       <p>
          this the child
       </p>
    </p>
    <p>
       this is the parent
       <p>
          this the child
          <p>this is third child</p>
       </p>
    </p>
</div>

In the div I have five <p> tags,but I want only use jquery selector to select the two top parent p tag without class and id name

Is it possible?How can I achieve that?

share|improve this question

1 Answer

up vote 0 down vote accepted

of course, just do

$('div').children('p)

children only select the direct children of an element. Don't forget to set an id to your div...

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.