Select all elements that contain the specified text. The matching text can appear directly within
Selects all sibling elements that follow after the "prev" element, have the same parent, and match the filtering "siblings" selector.
Selects all button elements and elements of type button. An equivalent selector to $( ":button"
Selects all elements that are headers, like h1, h2, h3 and so on. Because :header
Selects odd elements, zero-indexed. See also even.
Selects the combined results of all the specified selectors. You can specify any number of selectors
Selects elements that have the specified attribute with a value containing a given substring. This
Selects all elements of type submit. The :submit selector typically applies to button
Selects all input elements of type text. $( ":text" ) allows us to select all <input
Selects all elements that are disabled. As with other pseudo-class selectors (those that begin with
Page 5 of 7