:only-of-type selector
  • References/JavaScript/jQuery/Selectors

Selects all elements that have no siblings with the same element name. If the parent has other child

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

Selects all elements that are visible. Elements are considered visible if they consume space in

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

Selects all elements that do not match the given selector. All selectors are accepted inside :not()

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

Selects all elements that are the only child of their parent. If the parent has other child elements

2025-01-10 15:47:30
Attribute contains prefix selector [name|=”value”]
  • References/JavaScript/jQuery/Selectors

Selects elements that have the specified attribute with a value either equal to a given string or starting with that string followed by a hyphen (-).

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

Selects all the elements that are the nth-child of their parent in relation to siblings with the same element name, counting from the last element to the first.

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

Selects element if it is currently focused. As with other pseudo-class selectors (those that begin

2025-01-10 15:47:30
Attribute contains word selector [name~=”value”]
  • References/JavaScript/jQuery/Selectors

Selects elements that have the specified attribute with a value containing a given word, delimited by spaces. This

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

Select all elements at an index less than index within the matched set. index-related

2025-01-10 15:47:30
Next adjacent selector (“prev + next”)
  • References/JavaScript/jQuery/Selectors

Selects all next elements matching "next" that are immediately preceded by a sibling "prev". One

2025-01-10 15:47:30