:last-child selector
  • References/JavaScript/jQuery/Selectors

Selects all elements that are the last child of their parent. While

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

Selects even elements, zero-indexed. See also odd. In particular, note that the 0-based indexing

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
Child selector (“parent > child”)
  • References/JavaScript/jQuery/Selectors

Selects all direct child elements specified by "child" of elements specified by "parent". As a CSS

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