.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.
.next adjacent()
Selects all next elements matching "next" that are immediately preceded by a sibling "prev".
.next siblings()
Selects all sibling elements that follow after the "prev" element, have the same parent, and match the filtering "siblings" selector.
.nextAll()
Get all following siblings of each element in the set of matched elements, optionally filtered by a selector.
.nextUntil()
Get all following siblings of each element up to but not including the element matched by the selector, DOM node, or jQuery object passed.
.not()
Selects all elements that do not match the given selector.
.not()
Remove elements from the set of matched elements.
.nth-child()
Selects all elements that are the nth-child of their parent.