:animated Selector
Select all elements that are in the progress of an animation at the time the selector is run.
jQuery has extended the CSS3 selectors with the following selectors. Because these selectors are jQuery extension and not part of the CSS specification, queries using them cannot take advantage of the performance boost provided by the native DOM querySelectorAll()
method. To achieve the best performance when using these selectors, first select some elements using a pure CSS selector, then use .filter()
.
Select all elements that are in the progress of an animation at the time the selector is run.
Select elements that either don’t have the specified attribute, or do have the specified attribute but not with a certain value.
Selects all button elements and elements of type button.
Selects all elements of type checkbox.
Select the element at index n within the matched set.
Selects even elements, zero-indexed. See also odd.
Selects all elements of type file.
Selects the first matched element.
Select all elements at an index greater than index within the matched set.
Selects elements which contain at least one element that matches the specified selector.
Selects all elements that are headers, like h1, h2, h3 and so on.
Selects all elements that are hidden.
Selects all elements of type image.
Selects all input, textarea, select and button elements.
Selects the last matched element.
Select all elements at an index less than index within the matched set.
Selects odd elements, zero-indexed. See also even.
Select all elements that that have at least one child node (either an element or text).
Selects all elements of type password.
Selects all elements of type radio.
Selects all elements of type reset.
Selects all elements that are selected.
Selects all elements of type submit.
Selects all elements of type text.
Selects all elements that are visible.