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

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

2025-01-10 15:47:30
Class selector (“.class”)
  • References/JavaScript/jQuery/Selectors

Selects all elements with the given class. For class selectors, jQuery uses JavaScript's native

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

Selects elements that have the specified attribute with a value containing a given substring. This

2025-01-10 15:47:30
Multiple selector (“selector1, selector2, selectorN”)
  • References/JavaScript/jQuery/Selectors

Selects the combined results of all the specified selectors. You can specify any number of selectors

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

Selects all elements that are disabled. As with other pseudo-class selectors (those that begin with

2025-01-10 15:47:30
: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
:header selector
  • References/JavaScript/jQuery/Selectors

Selects all elements that are headers, like h1, h2, h3 and so on. Because :header

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

Selects all elements of type submit. The :submit selector typically applies to button

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

Selects odd elements, zero-indexed. See also even.

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

Selects all button elements and elements of type button. An equivalent selector to $( ":button"

2025-01-10 15:47:30