Zend Framework を介してコンテンツを動的に生成する標準の HTML 形式のテーブルがあります。そこから、PHP側でフォームを内部的に変更するという問題があります。したがって、テーブルの外観を何らかの方法で変更する必要があります。その際、行の1つに要素が表示され、この要素が表示されたら、テーブルから抜け出し、その後何かをしてから、テーブルを再度開始します。
基本的に私は同等のものを注入したい
</tbody></table>/*other stuff*/<table><tbody>
after the row containing the one element I seek which in this case is a label.
I tried $("label[for='theLable']").parents('tr').after('</tbody></table><br><table><tbody>')
which appears to ignore the ending table parts add the br, and then does a complete open/close tag for table and tbody within the same table I am trying to break out of so inbetween tr tags basically it adds this new table
Whats the best way to approach this concept?
update with jsfiddle link