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

Selects all elements that are the first among siblings of the same element name. The :first-of-type

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

Selects all elements that are the nth-child of their parent. Because jQuery's implementation of

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

Selects the element that is the root of the document. In HTML, the root of the document, and thus

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

Selects all input, textarea, select and button elements. The :input selector basically

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

Selects all elements of the specified language. The :lang() selector matches elements

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

Selects all elements of type radio. $( ":radio" ) is equivalent to $( "[type=radio]"

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

Selects all elements of type checkbox. $( ":checkbox" ) is equivalent to $( "[type=checkbox]"

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

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

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

Selects elements that have the specified attribute with a value exactly equal to a certain value.

2025-01-10 15:47:30
Descendant selector (“ancestor descendant”)
  • References/JavaScript/jQuery/Selectors

Selects all elements that are descendants of a given ancestor. A descendant of an element could

2025-01-10 15:47:30