- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
jQuery :nth-last-of-type() Selector
The :nth-last-of-type() selector in jQuery is used to select all elements that are the nth child, counting from the last child.
Syntax
The syntax is as follows −
:nth-last-of-type(n|even|odd|formula)
Above, the n parameter is the index of each child to match. The even parameter selects even child element, whereas odd selects odd child element.
Example
Let us now see an example to implement the jQuery :nth-last-of-type() selector −
<!DOCTYPE html> <html> <head> <style> .one { color: white; background-color: orange; font-size: 16px; border: 2px blue dashed; } </style> <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.4.1/jquery.min.js"></script> <script> $(document).ready(function(){ $("p:nth-last-of-type(2)").addClass("one"); }); </script> </head> <body> <h1>Match Details</h1> <div style="border:1px solid;"> <p>Date: 29th October 2019</p> <p>Timings: 3PM TO 8PM</p> <p>Ground: DY Patil</p> <p> Entry begins 2PM</p> </div><br> <div style="border:1px solid;"> <p>Date: 29th October 2019</p> <p>Timings: 8PM TO 11PM</p> <p>Ground: Eden Gardens</p> <p>Country: India</p> </div> </body> </html>
Output
This will produce the following output −
- Related Articles
- jQuery :nth-of-type() Selector
- jQuery :nth-last-child() Selector
- jQuery :last-of-type Selector
- Role of CSS :nth-last-of-type(n) Selector
- jQuery :nth-child() Selector
- jQuery :last Selector
- jQuery :last-child Selector
- jQuery :first-of-type Selector
- jQuery :only-of-type Selector
- Role of CSS :nth-last-child(n) Selector
- Role of CSS :nth-of-type(n) Selector
- Role of CSS :last-of-type Selector
- Role of CSS :nth-child(n) Selector
- jQuery :button Selector
- jQuery :checkbox Selector

Advertisements