:contains() selector
  • References/JavaScript/jQuery/Selectors

Select all elements that contain the specified text. The matching text can appear directly within

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
Next siblings selector (“prev ~ siblings”)
  • References/JavaScript/jQuery/Selectors

Selects all sibling elements that follow after the "prev" element, have the same parent, and match the filtering "siblings" selector.

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

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

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
: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
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
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