Jquery : gt() selector




$( '.utilities li:gt(4)' ).remove();

// JQuery : This snippet will remove all greater than 5 elements will be removed


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

Comments