Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

jQuery :first-of-type Selector

❮ jQuery Selectors

Example

Select every <p> element that is the first <p> element of its parent:

$("p:first-of-type")
Try it Yourself »

Definition and Usage

The :first-of-type selector selects all elements that are the first child, of a particular type, of their parent.

Tip: This is the same as :nth-of-type(1).

Tip: Use the :last-of-type selector to select all elements that are the last child, of a particular type, of their parent.


Syntax

$(":first-of-type")

Try it Yourself - Examples

Select the first <p> element of all <div> elements
How to select the first <p> element of all <div> elements.

Difference between :first, :first-child and :first-of-type
Show the difference between the :first, :first-child and :first-of-type selectors.


❮ jQuery Selectors