Given the following table:
<table>
<tr class="one"><td>Hello</td></tr>
<tr class="one"><td>Hello</td></tr>
<tr class="one"><td>Hello</td></tr>
<tr class="two"><td>World</td></tr>
<tr class="two"><td>World</td></tr>
</table>
Is it possible to use JQuery to insert a row between the 3rd and 4th rows (when the class changes from "one" to "two")? If so, how?
I'm thinking maybe using insertAfter() and .last() in some combination...