: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
: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
Attribute starts with selector [name^=”value”]
  • References/JavaScript/jQuery/Selectors

Selects elements that have the specified attribute with a value beginning exactly with a given string. 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
: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
: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
ID selector (“#id”)
  • References/JavaScript/jQuery/Selectors

Selects a single element with the given id attribute. For id selectors, jQuery uses the JavaScript

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

Selects elements which contain at least one element that matches the specified selector. The expression

2025-01-10 15:47:30
Attribute not equal selector [name!
  • References/JavaScript/jQuery/Selectors

Select elements that either don't have the specified attribute, or do have the specified attribute but not with a certain value.

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

Selects the target element indicated by the fragment identifier of the document's URI. If the document's

2025-01-10 15:47:30