jQuery()
Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.
Return a collection of matched elements either found in the DOM based on passed argument(s) or created by passing an HTML string.
Selects all input elements of type text.
Selects elements that have the specified attribute with a value containing a given substring.
Selects a single element with the given id attribute.
Selects all elements of type checkbox.
Selects all elements with the given class.
Selects all elements that are the nth child of their parent in relation to siblings with the same element name.
Selects all the elements that are the nth-child of their parent in relation to siblings with the same element name, counting from the last element to the first.
Selects the last matched element.
Select all elements that contain the specified text.
Selects all elements that are disabled.