:nth-last-child()S2C Home « Selectors « :nth-last-child()

Structural pseudo-class selector.

Shorthand version $(':nth-last-child(index/equation/even/odd)')

Description

The (':nth-last-child()') selector, selects all elements that are the nth last child of the specified parent, counting from the last element to the first.

  • Be aware that unlike all other selectors and JavaScript generally which is zero-index based the index for nth selectors start at 1. So as an example the first element selected will be odd and not even because of this.
  • If this selector is not preceded by another selector the universal selector ("*") is implied and so the whole DOM will be searched. Use another selector as in the examples below to narrow the search and improve performance.

Syntax

Signature Description
jQuery(':nth-last-child(index/equation/even/odd)')Structural pseudo-class match

Parameters

Parameter Description
index/equation/even/oddindex - index starting from 1   or
equation - to work out nth position   or
even - all even children   or
odd - all odd children.

Return

N/A.

:nth-last-child() ExamplesTop

Selects all elements that are the nth-child of the specified parent, counting from the last element to the first.

In the example below when we press the button we select all 'td' elements on the page that are the last child of their parents and change the background colour of these elements to green.


$(function(){
  $('#btn1').on('click', function() {
    $('td:nth-last-child(1)').css('backgroundColor', 'green');
  });
}); 

Press the button below to action the above code:


In the example below when we press the button we will select all even children 'td' elements on the page and change the background colour of these elements to orange. As we are using this particular selector we count from the right to the left, so the first 'td' elements above and are turned orange (2, 1 <---) and the middle 'td' element in the footer is turned orange (3, 2 <---).


$(function(){
  $('#btn2').on('click', function() {
    $('td:nth-last-child(even)').css('backgroundColor', 'orange');
  });
}); 

Press the button below to action the above code:


In the example below when we press the button we select all 'span' elements on the page that are odd children of their parents and change the background colour to silver. This will change all the 'h4 span' in the left sidebar.


$(function(){
  $('#btn3').on('click', function() {
    $('h4 span:nth-last-child(odd)').css('backgroundColor', 'silver');
  });
}); 

Press the button below to action the above code:


jQuery 3.5 Basics

jQuery 3.5 Intermediate

jQuery 3.5 Advanced

jQuery 3.5 Reference

API by Function

API Alphabetically

Ajax

Attributes & Properties

Core & Internals

DOM Element Methods

Effects

Events

Filtering

Manipulation

Objects

Selectors

Attribute

Attribute Contains Prefix Selector

Attribute Contains Selector

Attribute Contains Word Selector

Attribute Ends With Selector

Attribute Equals Selector

Attribute Not Equal Selector

Attribute Starts With Selector

Has Attribute Selector

Multiple Attribute Selector

Basic

All Selector ('*')

Class Selector ('.class')

Element Selector

ID Selector ('#id')

Multiple Selector

Basic Filter

:animated Selector

:eq() Selector

:even Selector

:first Selector

:gt() Selector

:header Selector

:lang Selector

:last Selector

:lt() Selector

:not() Selector

:odd Selector

:root Selector

:target Selector

Child Filter

:first-child Selector

:first-of-type Selector

:last-child Selector

:last-of-type Selector

:nth-child() Selector

:nth-last-child() Selector

:nth-last-of-type() Selector

:nth-of-type() Selector

:only-child Selector

:only-of-type Selector

Content Filter

:contains() Selector

:empty Selector

:has Selector

:parent Selector

Form

:button Selector

:checkbox Selector

:checked Selector

:disabled Selector

:enabled Selector

:file Selector

:focus Selector

:image Selector

:input Selector

:password Selector

:radio Selector

:reset Selector

:selected Selector

:submit Selector

:text Selector

Hierarchy

Child Selector

Descendant Selector

Next Adjacent Selector

Next Siblings Selector

Visibility Filter

:hidden Selector

:visible Selector

Traversal

Utilities