I have this DOM
<div class="c">c</div>
<div class="a">match me not</div>
<div class="c">c</div>
<div class="c wrapper">c with some .wrapper</div>
<div class="a">match me!</div>
<div class="a">match me!</div>
<div class="c">c</div>
<div class="a">match me not</div>
<div class="c">c</div>
and need to match .a
after .wrapper
until the next .c
nextAll()
matches everything after
nextUntil()
only selects the last element