Is there any jQuery NextUntil function for phpQuery? In case I have this HTML structure:
<table id="m" width="100%">
<tbody>
<tr class="x" align="center"></tr>
<tr></tr>
<tr class="n"></tr>
<tr></tr>
<tr class="n"></tr>
<tr></tr>
<tr class="x" align="center"></tr>
<tr class="n"></tr>
<tr></tr>
<tr class="n"></tr>
<tr></tr>
<tr class="n"></tr>
<tr></tr>
</tbody>
</table>
All I want to do is getting the elements between "tr.x" using phpQuery. In jQuery we can do that with NextUntil() function.