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

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

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
Attribute contains selector [name*=”value”]
  • References/JavaScript/jQuery/Selectors

Selects elements that have the specified attribute with a value containing a given substring. This

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