I'm looking for a way to traverse DOM element siblings like .nextSibling() allows, but at any given distance instead of the direct next sibling only.
For instance if I wanted to move 3 siblings over relative to my current node, I could do something like nextSibling(3) or siblings[2].
Any ideas on how to accomplish this without just looping nextSibling n number of times?