:password selector
  • References/JavaScript/jQuery/Selectors

Selects all elements of type password. $( ":password" ) is equivalent to $( "[type=password]"

2025-01-10 15:47:30
All selector (“*”)
  • References/JavaScript/jQuery/Selectors

Selects all elements. Caution: The all, or universal, selector is extremely slow, except when used

2025-01-10 15:47:30
:first-of-type selector
  • References/JavaScript/jQuery/Selectors

Selects all elements that are the first among siblings of the same element name. The :first-of-type

2025-01-10 15:47:30
Multiple selector (“selector1, selector2, selectorN”)
  • References/JavaScript/jQuery/Selectors

Selects the combined results of all the specified selectors. You can specify any number of selectors

2025-01-10 15:47:30
:text selector
  • References/JavaScript/jQuery/Selectors

Selects all input elements of type text. $( ":text" ) allows us to select all <input

2025-01-10 15:47:30
:odd selector
  • References/JavaScript/jQuery/Selectors

Selects odd elements, zero-indexed. See also even.

2025-01-10 15:47:30
:disabled selector
  • References/JavaScript/jQuery/Selectors

Selects all elements that are disabled. As with other pseudo-class selectors (those that begin with

2025-01-10 15:47:30
:header selector
  • References/JavaScript/jQuery/Selectors

Selects all elements that are headers, like h1, h2, h3 and so on. Because :header

2025-01-10 15:47:30
:button selector
  • References/JavaScript/jQuery/Selectors

Selects all button elements and elements of type button. An equivalent selector to $( ":button"

2025-01-10 15:47:30
:submit selector
  • References/JavaScript/jQuery/Selectors

Selects all elements of type submit. The :submit selector typically applies to button

2025-01-10 15:47:30