.has()
  • References/JavaScript/jQuery/Traversing

Reduce the set of matched elements to those that have a descendant that matches the selector or DOM element. Given

2025-01-10 15:47:30
.first()
  • References/JavaScript/jQuery/Traversing

Reduce the set of matched elements to the first in the set. Given a jQuery object that represents

2025-01-10 15:47:30
.parentsUntil()
  • References/JavaScript/jQuery/Traversing

Get the ancestors of each element in the current set of matched elements, up to but not including the element matched by the selector, DOM node, or jQuery object.

2025-01-10 15:47:30
.map()
  • References/JavaScript/jQuery/Traversing

Pass each element in the current matched set through a function, producing a new jQuery object containing the return values.

2025-01-10 15:47:30
.last()
  • References/JavaScript/jQuery/Traversing

Reduce the set of matched elements to the final one in the set. Given a jQuery object that represents

2025-01-10 15:47:30
.next()
  • References/JavaScript/jQuery/Traversing

Get the immediately following sibling of each element in the set of matched elements. If a selector is provided, it retrieves the next sibling only if it matches that

2025-01-10 15:47:30
.is()
  • References/JavaScript/jQuery/Traversing

Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given

2025-01-10 15:47:30
.each()
  • References/JavaScript/jQuery/Traversing

Iterate over a jQuery object, executing a function for each matched element. The .each()

2025-01-10 15:47:30
.filter()
  • References/JavaScript/jQuery/Traversing

Reduce the set of matched elements to those that match the selector or pass the function's test. Given

2025-01-10 15:47:30
.prevUntil()
  • References/JavaScript/jQuery/Traversing

Get all preceding siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object.

2025-01-10 15:47:30