.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
.addBack()
  • References/JavaScript/jQuery/Traversing

Add the previous set of elements on the stack to the current set, optionally filtered by a selector. As

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

Get the parent of each element in the current set of matched elements, optionally filtered by a selector. Given

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

Get all following siblings of each element in the set of matched elements, optionally filtered by a selector.

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

Get the children of each element in the set of matched elements, optionally filtered by a selector. Given

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

Add the previous set of elements on the stack to the current set. Note: This function

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

Get the immediately preceding sibling of each element in the set of matched elements, optionally filtered by a selector.

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

Get the ancestors of each element in the current set of matched elements, optionally filtered by a selector. Given

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

Reduce the set of matched elements to a subset specified by a range of indices. Given a jQuery object

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

Get the children of each element in the set of matched elements, including text and comment nodes. Given

2025-01-10 15:47:30