I try to find the way to split ul tag by showing only 10 li tag per ul.
Suppose I have li 30 elements. script will be re build into 3 ul and each ul has 10 li tag.
How can I do this ?
suppose original is :
<ul id="ul1" style="">
<li><a href="#"><span>Adidas</span></a></li>
<li><a href="#"><span>jason markk</span></a></li>
<li>... 28 mores </li>
</ul>
Jquery will re build ul in to 3 ul (10 li per ul):
<ul id="ul1" style="">
<li>10 times</li>
</ul>
<ul id="ul2" style="">
<li>10 times</li>
</ul>
<ul id="ul3" style="">
<li>10 times</li>
</ul>
Please guide, Thanks