I can\'t seem to see the forest for the trees right now (Looked at the api docs already). It has to do with jQuery selectors: What I\'m trying to do is to select all ele
What about: $some_elements.eq(0).nextUntil('.headsection, .subtitle');
$some_elements.eq(0).nextUntil('.headsection, .subtitle');
Works for me at least. Read about multiple selectors.