How would I select the first <p> element in the following <div> with jQuery?
<div>
<h1>heading</h1>
<p>How do I select this element with jQuery?</p>
<p>Another paragraph</p>
</div>
|
How would I select the first
|
|||
|
|
|
Assuming you have a reference to the
If the first Some alternatives include:
Note that the
|
|||||||||||||
|
answer was too short to post without this useless sentence. Edit This is definitely a slow option. After looking at Jame's speed test, it looks like jQuery selectors work best when they piggy back off of css selectors. |
|||||||||
|
|
$("div p").first(); or $('div p:first'); Reference: http://api.jquery.com/first/ Keep in mind that first() matches only a single element, the :first-child selector can match more than one: one for each parent. |
||||
|
|
|
You almost know the answer (from your post title). There is a selector in jQuery called
|
|||
|
|