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
:last-of-type selector
  • References/JavaScript/jQuery/Selectors

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

2025-01-10 15:47:30
Class selector (“.class”)
  • References/JavaScript/jQuery/Selectors

Selects all elements with the given class. For class selectors, jQuery uses JavaScript's native

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

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

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

Selects the last matched element. Note that :last selects a single element by filtering

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

Selects all elements of type file. :file is equivalent to [type="file"]

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

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

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

Selects all elements with the given tag name. JavaScript's getElementsByTagName() function

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

Selects all elements that are the nth child of their parent in relation to siblings with the same element name.

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

Selects all elements of type image. :image is equivalent to [type="image"]

2025-01-10 15:47:30