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