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

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

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

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

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

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

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