FREE Web Template Download
HTML CSS JAVASCRIPT SQL PHP BOOTSTRAP JQUERY ANGULARJS TUTORIALS REFERENCES EXAMPLES Blog
 

jQuery :gt() Selector

jQuery Selectors jQuery Selectors

Example

Select all <tr> elements after the 4 first:

$("tr:gt(3)")
Try it Yourself »

Definition and Usage

The :gt() selector selects elements with an index number higher than a specified number.

The index numbers start at 0.

This is mostly used together with another selector to select the last elements in a group (like in the example above).

Tip: Use the :lt selector to select elements index numbers lesser than the specified number.


Syntax

$(":gt(index)")

Parameter Description
index Required. Specifies which element to select.
Elements with an index higher than the specified number is selected.

jQuery Selectors jQuery Selectors