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 CYBERSECURITY DATA SCIENCE
     ❯   

jQuery :last-child Selector

❮ jQuery Selectors

Example

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

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

Definition and Usage

The :last-child selector selects all elements that are the last child of their parent.

Tip: Use the :first-child selector to select elements that are the first child of their parent.


Syntax

$(":last-child")

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 and :last-child
Show the difference between the :last and :last-child selectors.

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


❮ jQuery Selectors