i have i little question. Is there any option to duplicate more than one element with jquery? I have one element list, can i clone, duplicate it f.e. 7 times?
<ul id="my_list>
<li class="one_element>data</li>
</ul>
and some jquery, i have no idea how to write this:
var mylist = $('#my_list');
myList.find('li').clone(2);
Can u help me? Thx.
1 Answer