Select all elements that contain the specified text. The matching text can appear directly within
Selects the last matched element. Note that :last selects a single element by filtering
Selects all sibling elements that follow after the "prev" element, have the same parent, and match the filtering "siblings" selector.
Selects all elements of type file. :file is equivalent to [type="file"]
Selects all elements of type password. $( ":password" ) is equivalent to $( "[type=password]"
Selects all elements of type image. :image is equivalent to [type="image"]
Selects all elements that are the nth child of their parent in relation to siblings with the same element name.
Selects all elements that are enabled. As with other pseudo-class selectors (those that begin with
Selects all elements. Caution: The all, or universal, selector is extremely slow, except when used
Selects all elements with the given tag name. JavaScript's getElementsByTagName() function
Page 4 of 7