jQuery Extensions
-
:animated Selector
Basic Filter | jQuery Extensions
Select all elements that are in the progress of an animation at the time the selector is run.
-
Attribute Not Equal Selector [attribute!="value"]
Select elements that either don't have the specified attribute, or do have the specified attribute but not with a certain value.
-
:button Selector
Selects all button elements and elements of type button.
-
:checkbox Selector
Selects all elements of type checkbox.
-
:eq() Selector
Basic Filter | jQuery Extensions
Select the element at index
n
within the matched set. -
:even Selector
Basic Filter | jQuery Extensions
Selects even elements, zero-indexed. See also odd.
-
:file Selector
Selects all elements of type file.
-
:first Selector
Basic Filter | jQuery Extensions
Selects the first matched element.
-
:gt() Selector
Basic Filter | jQuery Extensions
Select all elements at an index greater than
index
within the matched set. -
:has() Selector
Content Filter | jQuery Extensions
Selects elements which contain at least one element that matches the specified selector.
-
:header Selector
Basic Filter | jQuery Extensions
Selects all elements that are headers, like h1, h2, h3 and so on.
-
:hidden Selector
jQuery Extensions | Visibility Filter
Selects all elements that are hidden.
-
:image Selector
Selects all elements of type image.
-
:input Selector
Selects all input, textarea, select and button elements.
-
:last Selector
Basic Filter | jQuery Extensions
Selects the last matched element.
-
:lt() Selector
Basic Filter | jQuery Extensions
Select all elements at an index less than
index
within the matched set. -
:odd Selector
Basic Filter | jQuery Extensions
Selects odd elements, zero-indexed. See also even.
-
:parent Selector
Content Filter | jQuery Extensions
Select all elements that are the parent of another element, including text nodes.
-
:password Selector
Selects all elements of type password.
-
:radio Selector
Selects all elements of type radio.
-
:reset Selector
Selects all elements of type reset.
-
:selected Selector
Selects all elements that are selected.
-
:submit Selector
Selects all elements of type submit.
-
:text Selector
Selects all elements of type text.
-
:visible Selector
jQuery Extensions | Visibility Filter
Selects all elements that are visible.