vote up 0 vote down star
<ul>
    <li class="append-me">Content A</li>
    <li class="append-me">Content B</li>
    <li class="dont-append-me">Content C</li>
</ul>

<a id="append-it" href="#">Append!</a>

<div id="appended-items"></div>

<script>
    $("#append-it").click(function(){
        $("#appended-items").append($(".append-me"));
    });
</script>

When I click Append!, the li's with class="append-me" are successfully added to the div, but the nodes are removed from their original place in the HTML. How can I add the nodes into the div, but not remove them from their original place? Thanks!

flag

47% accept rate

1 Answer

vote up 2 vote down check

You can try:


$("#appended-items").append($(".append-me").clone());
link|flag
Use $("#appended-items").append($(".append-me").clone(true)); if you want to keep the cloned elements' event handlers attached. – David Murdoch Nov 6 at 18:18

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.