Is there a way to select elements appearing after a given element using CSS selectors.
Suppose I have a DOM like this one
<body>
<span class="next">A next span</span>
<div>
<span class="next target">the target next span</span>
</div>
<div>
<span class="next">this is the one I want to select</span>
</div>
</body>
I want to select the span
s of class next
but only the ones that appear after span.next.target
. What make this tricky is that they need not to be siblings or under the same parent node but can appear anywhere in the DOM.
Is this even possible, or am I doomed to stick with a for loop?
You can use plain javascript for this:
Here is an example It's based on ES2015 standards using function generators (yield), but if you would like to use ES5 you can add items to array and return array instead.