:eq() selector
  • References/JavaScript/jQuery/Selectors

Select the element at index n within the matched set. The index-related selectors (:eq()

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

Selects all elements that are hidden. Elements can be considered hidden for several reasons:

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

Select all elements at an index greater than index within the matched set. index-related

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

Selects all elements that are the nth-child of their parent, counting from the last element to the first. Because

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

Selects the first matched element. The :first pseudo-class is equivalent to :eq(

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

Select all elements that are in the progress of an animation at the time the selector is run.

2025-01-10 15:47:30
Multiple attribute selector [name=”value”][name2=”value2″]
  • References/JavaScript/jQuery/Selectors

Matches elements that match all of the specified attribute filters.

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

Select all elements that have at least one child node (either an element or text). This is the inverse

2025-01-10 15:47:30
Has attribute selector [name]
  • References/JavaScript/jQuery/Selectors

Selects elements that have the specified attribute, with any value.

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

Matches all elements that are checked or selected. The :checked selector works for

2025-01-10 15:47:30