Selects all elements of type password. $( ":password" ) is equivalent to $( "[type=password]"
Selects the last matched element. Note that :last selects a single element by filtering
Selects all elements of type submit. The :submit selector typically applies to button
Selects elements that have the specified attribute with a value containing a given substring. This
Selects odd elements, zero-indexed. See also even.
Selects all input elements of type text. $( ":text" ) allows us to select all <input
Selects all button elements and elements of type button. An equivalent selector to $( ":button"
Selects the combined results of all the specified selectors. You can specify any number of selectors
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
Page 5 of 7