jQuery :last-of-type Selector
Example
Select every <p> element that is the last <p> element of its parent:
$("p:last-of-type")
Try it Yourself »
Definition and Usage
The :last-of-type selector selects all elements that are the last child, of a particular type, of their parent.
Tip: This is the same as :nth-last-of-type(1).
Tip: Use the :first-of-type selector to select all elements that are the first child, of a particular type, of their parent.
Syntax
$(":last-of-type")
Try it Yourself - Examples
Select
the last <p> element of all <div> elements
How to select the last <p> element of all <div> elements.
Difference
between :last, :last-child and :last-of-type
Show the difference between the :last, :last-child and :last-of-type selectors.