How would I select the first
Assuming you have a reference to the If the first Some alternatives include: Note that the element in the following heading
div already:$(yourDiv).find("p").eq(0);
p will always be a direct child of the div, you could use children instead of find.$(yourDiv).find("p:eq(0)"); //Slower than the `.eq` method
$(yourDiv).find("p:first");
$(yourDiv).find("p").first() //Just an alias for `.eq(0)`
eq method will always be the fastest way to do this. Here's the results of a quick comparison of the eq method, :eq selector and :first selector (I didn't bother with the first method since it's just an alias of eq(0)):