Hi all,
Can somebody help me convert the following html
<ul>
<li>1</li>
<li>2</li>
<li>3</li>
<li>4</li>
</ul>
into this one
<ul>
<li class="li_group">
<ul>
<li>1</li>
<li>2</li>
</ul>
</li>
<li class="li_group">
<ul>
<li>3</li>
<li>4</li>
</ul>
</li>
</ul
using jQuery?
Thank you!