: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: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:file Selector
file selector Description: Selects all elements of type file. version added: 1.0jQuery( ":file" ) :file is equivalent to [type="file"]. As with other pseudo-class selectors (those that begin with a...
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:contains() Selector
contains selector Description: Select all elements that contain the specified text. version added: 1.1.4jQuery( ":contains(text)" ) text: A string of text to look for. It's case sensitive. The matching...
View Article:checkbox Selector
checkbox selector Description: Selects all elements of type checkbox. version added: 1.0jQuery( ":checkbox" ) $( ":checkbox" ) is equivalent to $( "[type=checkbox]" ). As with other pseudo-class...
View Article:button Selector
button selector Description: Selects all button elements and elements of type button. version added: 1.0jQuery( ":button" ) An equivalent selector to $( ":button" ) using valid CSS is $( "button,...
View ArticleAttribute Not Equal Selector [name!=”value”]
attributeNotEqual selector Description: Select elements that either don't have the specified attribute, or do have the specified attribute but not with a certain value. version added: 1.0jQuery(...
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