-
.find()
Get the descendants of each element in the current set of matched elements, filtered by a selector.
-
.next()
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 selector.
-
.nextAll()
Get all following siblings of each element in the set of matched elements, optionally filtered by a selector.
-
parent
Get the parent of each element in the current set of matched elements, optionally filtered by a selector.
-
parentsUnit
Get the ancestors of each element in the current set of matched elements, up to but not including the element matched by the selector.