Selects all elements of type password. $( ":password" ) is equivalent to $( "[type=password]"
Selects all elements. Caution: The all, or universal, selector is extremely slow, except when used
Selects all elements that are the first among siblings of the same element name. The :first-of-type
Selects the combined results of all the specified selectors. You can specify any number of selectors
Selects all input elements of type text. $( ":text" ) allows us to select all <input
Selects odd elements, zero-indexed. See also even.
Selects all elements that are disabled. As with other pseudo-class selectors (those that begin with
Selects all elements that are headers, like h1, h2, h3 and so on. Because :header
Selects all button elements and elements of type button. An equivalent selector to $( ":button"
Selects all elements of type submit. The :submit selector typically applies to button
Page 5 of 7