Menu
×
   ❮     
HTML CSS JAVASCRIPT SQL PYTHON JAVA PHP HOW TO W3.CSS C C++ C# BOOTSTRAP REACT MYSQL JQUERY EXCEL XML DJANGO NUMPY PANDAS NODEJS R TYPESCRIPT ANGULAR GIT POSTGRESQL MONGODB ASP AI GO KOTLIN SASS VUE DSA GEN AI SCIPY AWS CYBERSECURITY DATA SCIENCE
     ❯   

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