Tag Archives: next element child

jQuery next method


jQuery next method : jQuery “next()” is used to get the next siblings of the matched elements. $(selector).next(selector-element); is method to get next element. Where selector and selector-element are input parameters.


jQuery next() method Syntax

$(selector).next(selector-element);

selector-element : Is optional, you can add selector-element to get next element.

jQuery next Method Example 1

Here is an example of next() method which selects next elements to the the class .curr-li and adds css ie. border red.

jQuery next() Method – Example 1


Try it »

The ouput of the above code is :

jQuery next Method Example

jQuery next() Method Example 2

jQuery next() Method – Example 2


Try it »