This page documents data types appearing in jQuery function signatures, whether defined by JavaScript itself or further restricted by jQuery. Unless explicitly stated otherwise, jQuery functions require primitive values where applicable, and do not accept their Object-wrapped forms. If you want to study these concepts in depth, take a look at MDN. You should be … Continue reading →
For each element in the set, get the first element that matches the selector by testing the element itself and traversing up through its ancestors in the DOM tree.
Attach an event handler function for one or more events to the selected elements.
Select all elements at an index less than index within the matched set.
Selects the combined results of all the specified selectors.
Select all elements at an index greater than index within the matched set.
Select the element at index n within the matched set.
Selects all elements that do not match the given selector.
Selects odd elements, zero-indexed. See also :even.
Selects all elements that are the nth-child of their parent.
Selects even elements, zero-indexed. See also :odd.
Selects all elements of type password.
Selects element if it is currently focused.
Selects all elements of type radio.
Selects all elements that are enabled.
Selects the first matched DOM element.
Get the descendants of each element in the current set of matched elements, filtered by a selector, jQuery object, or element.
Selects all elements of type file.
Selects all elements that are the nth-child of their parent, counting from the last element to the first.