Next Siblings ('previous ~ siblings')S2C Home « Selectors « Next Siblings ('previous ~ siblings')

Next Siblings selector.

Shorthand version $('previous ~ siblings')

Description

The ('previous ~ siblings') selector, selects all specified sibling elements that follow after the specified previous element and have the same parent.

  • Both elements on either side of the combinator must share the same parent.

Syntax

Signature Description
jQuery('previous ~ siblings')Next Siblings match

Parameters

Parameter Description
previousA valid selector.
siblingsAnother valid selector to match the elements next to the previous selector.

Return

N/A.

Next Siblings ('previous ~ siblings') ExamplesTop

Selects all specified sibling elements that follow after the specified previous element and have the same parent.

The following example will select all 'table' elements that are preceded by a 'h3' element and change the background color of these elements to silver. In this case the elements both share a common 'div' ancestor. Look at the tables above after clicking the button.



$(function(){
  $('#btn1').on('click', function() {
    $('h2 ~ table').css('backgroundColor', 'silver');
  });
}); 


Press the button below to action the above code:

The following example will select all 'h4' elements that are preceded by a 'h3' element and place a 2 pixel solid red border around them. In this case the elements both share a common 'div' ancestor. Look at the left sidebar after clicking the button.



$(function(){
  $('#btn2').on('click', function() {
    $('h3 ~ h4').css('border', '2px solid red');
  });
}); 


Press the button below to action the above code:

The following example will select all 'form' elements that are preceded by a 'pre' element and change the background color of these elements to orange. In this case the elements both share a common 'div' ancestor. Look at the button containers after clicking the button.



$(function(){
  $('#btn3').on('click', function() {
    $('pre ~ form').css('backgroundColor', 'orange');
  });
}); 


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