Я хочу обернуть <div>
ОТ НАЧАЛА <H2>
до следующего <H2>
, но он начинается только с первого абзаца.
Это то, что у меня есть, что почти все делает:
$('h2:contains("test")').nextUntil('h2').wrapAll('<div class="wrapper" />');
Вот мой HTML:
/* from here */
<h2 class='test'>Include this in the wrap</h2>
<p>this</p>
<p>and this</p>
<p>and this</p> /* to here */
<h2 class='next'>before this</h2>