THE WORLD'S LARGEST WEB DEVELOPER SITE

jQuery :last Selector

❮ jQuery Selectors

Example

Select the last <p> element:

$("p:last")
Try it Yourself »

Definition and Usage

The :last selector selects the last element.

Note: This selector can only select one single element. Use the :last-child selector to select more than one element (one for each parent).

This is mostly used together with another selector to select the last element in a group (like in the example above).

Tip: To select the first element in a group, use the :first selector.


Syntax

$(":last")

Try it Yourself - Examples

Difference between :last and :last-child
Show the difference between the :last and :last-child selectors.


❮ jQuery Selectors