I want to copy or move some html elements into another div element.
From this:
<ul class='here'>
<li>text1</li>
<li>text2</li>
<li>text3</li>
</ul>
<ul class='there'>
</ul>
to this:
<ul class='here'>
<li>text1</li>
<li>text2</li>
<li>text3</li>
</ul>
<ul class='there'>
<li>text1</li>
<li>text2</li>
<li>text3</li>
</ul>
or to this:
<ul class='here'>
</ul>
<ul class='there'>
<li>text1</li>
<li>text2</li>
<li>text3</li>
</ul>
Would be great both to know, thanks in advance!