This is a variation on a question asked so many times. Given any element, I want to be able to find any other element after it in the entire document. It can be a sibling but it could also be any other element that occurs afterward. For example, given the following markup,
<div>
<p>Hello</p>
<div>
<p>Foo</p>
<p class="bar">Bar</p>
<p>rawr!</p>
</div>
<p>bop</p>
<input/>
<div>
<p>Another</p>
<div>
<span>something</span>
<p>deep!</p>
</div>
</div>
</div>
<p>last</p>
For the sake of this description, lets say the function I am looking for is called $.fn.nextInDocument. If I called:
$('.bar').nextInDocument('p'); // <p>rawr</p>
$('.bar').nextInDocument('p').nextInDocument('p'); // <p>bop</p>
Continuing on, it would get <p>Another</p>, then <p>deep!</p> and finally <p>last</p>.
Does something like this exist? I don't care if it is a selector or a function. I just need the functionality.
EDIT Updated the DOM structure to make it a more challenging question yet more clear for what I am looking for.