:lt() Selector
lt selector Description: Select all elements at an index less than index within the matched set. version added: 1.0jQuery( ":lt(index)" ) index: Zero-based index. index-related selectors The...
View Article:last Selector
last selector Description: Selects the last matched element. version added: 1.0jQuery( ":last" ) Note that :last selects a single element by filtering the current jQuery collection and matching the...
View Article:lang Selector
lang selector Description: Selects all elements of the specified language. version added: 1.9jQuery( ":lang(language)" ) language: A language code. The :lang selector matches elements that have a...
View Article:header Selector
header selector Description: Selects all elements that are headers, like h1, h2, h3 and so on. version added: 1.2jQuery( ":header" ) Additional Notes: Because :header is a jQuery extension and not part...
View Article:gt() Selector
gt selector Description: Select all elements at an index greater than index within the matched set. version added: 1.0jQuery( ":gt(index)" ) index: Zero-based index. index-related selectors The...
View Article:focus Selector
focus selector Description: Selects element if it is currently focused. version added: 1.6jQuery( ":focus" ) As with other pseudo-class selectors (those that begin with a ":"), it is recommended to...
View Article:first Selector
first selector Description: Selects the first matched element. version added: 1.0jQuery( ":first" ) The :first pseudo-class is equivalent to :eq(0). It could also be written as :lt(1). While this...
View Article:even Selector
even selector Description: Selects even elements, zero-indexed. See also odd. version added: 1.0jQuery( ":even" ) In particular, note that the 0-based indexing means that, counter-intuitively, :even...
View Article:eq() Selector
eq selector Description: Select the element at index n within the matched set. version added: 1.0jQuery( ":eq(index)" ) index: Zero-based index of the element to match. version added: 1.8jQuery(...
View Article:animated Selector
animated selector Description: Select all elements that are in the progress of an animation at the time the selector is run. version added: 1.2jQuery( ":animated" ) Note: If you use a custom jQuery...
View Article:lt() Selector
lt selector Description: Select all elements at an index less than index within the matched set. version added: 1.0jQuery( ":lt(index)" ) index: Zero-based index. version added: 1.8jQuery(...
View Article:last Selector
last selector Description: Selects the last matched element. version added: 1.0jQuery( ":last" ) Note that :last selects a single element by filtering the current jQuery collection and matching the...
View Article:lang() Selector
lang selector Description: Selects all elements of the specified language. version added: 1.9jQuery( ":lang(language)" ) language: A language code. The :lang() selector matches elements that have a...
View Article:header Selector
header selector Description: Selects all elements that are headers, like h1, h2, h3 and so on. version added: 1.2jQuery( ":header" ) Additional Notes: Because :header is a jQuery extension and not part...
View Article:gt() Selector
gt selector Description: Select all elements at an index greater than index within the matched set. version added: 1.0jQuery( ":gt(index)" ) index: Zero-based index. version added: 1.8jQuery(...
View Article:focus Selector
focus selector Description: Selects element if it is currently focused. version added: 1.6jQuery( ":focus" ) As with other pseudo-class selectors (those that begin with a ":"), it is recommended to...
View Article:first Selector
first selector Description: Selects the first matched element. version added: 1.0jQuery( ":first" ) The :first pseudo-class is equivalent to :eq( 0 ). It could also be written as :lt( 1 ). While this...
View Article:even Selector
even selector Description: Selects even elements, zero-indexed. See also odd. version added: 1.0jQuery( ":even" ) In particular, note that the 0-based indexing means that, counter-intuitively, :even...
View Article:eq() Selector
eq selector Description: Select the element at index n within the matched set. version added: 1.0jQuery( ":eq(index)" ) index: Zero-based index of the element to match. version added: 1.8jQuery(...
View Article:animated Selector
animated selector Description: Select all elements that are in the progress of an animation at the time the selector is run. version added: 1.2jQuery( ":animated" ) Note: If you use a custom jQuery...
View Article