:lt() Selector
lt selectorversion deprecated: 3.4 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:...
View Article:last Selector
last selectorversion deprecated: 3.4 Description: Selects the last matched element. version added: 1.0jQuery( ":last" ) As of jQuery 3.4, the :last pseudo-class is deprecated. Remove it from your...
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 selectorversion deprecated: 3.4 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...
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 selectorversion deprecated: 3.4 Description: Selects the first matched DOM element. version added: 1.0jQuery( ":first" ) As of jQuery 3.4, the :first pseudo-class is deprecated. Remove it from...
View Article:even Selector
even selectorversion deprecated: 3.4 Description: Selects even elements, zero-indexed. See also :odd. version added: 1.0jQuery( ":even" ) As of jQuery 3.4, the :even pseudo-class is deprecated. Remove...
View Article:eq() Selector
eq selectorversion deprecated: 3.4 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...
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