Basic Filter
-
:animated Selector
Basic Filter | jQuery Extensions
Select all elements that are in the progress of an animation at the time the selector is run.
-
: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.
-
:first Selector
Basic Filter | jQuery Extensions
Selects the first matched element.
-
:focus Selector
Selects element if it is currently focused.
-
:gt() Selector
Basic Filter | jQuery Extensions
Select all elements at an index greater than
index
within the matched set. -
:header Selector
Basic Filter | jQuery Extensions
Selects all elements that are headers, like h1, h2, h3 and so on.
-
: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. -
:not() Selector
Selects all elements that do not match the given selector.
-
:odd Selector
Basic Filter | jQuery Extensions
Selects odd elements, zero-indexed. See also even.