Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this problem I'm working on which is giving me a headache, because I can't seem to find where the bug is. Here's the markup:

<div class="excerpt">
     <p>...</p>
</div>

<div class="bio">
     <p>...</p>
</div>

When the user clicks a button, I want to display whatever is in div.bio to show in div.excerpt. Here is my click() function.

$('.button').click( function() { 
     var bio = $('.bio p'); 
     var excerpt = $('.excerpt'); 

     // empty 
     excerpt.empty(); 

     // replace
     bio.appendTo(excerpt); 

}); 

The problem is that this code removes the paragraphs from the bio during the append. Is there a way to simply append and not remove the elements from the source? Or am I doing something else wrong?

share|improve this question

4 Answers

up vote 3 down vote accepted

When you use append or appendTo on existing parts of the DOM tree you are actually moving them. As the documentation states,

If an element selected this way is inserted elsewhere, it will be moved into the target (not cloned):

You need to also use clone to add a copy of the elements to the tree. For example:

bio.clone().appendTo(excerpt);
share|improve this answer
Great thanks this works perfectly. – Ankur Dec 7 '11 at 19:46

append() moves the element from one place to another; to copy the element from one place to another, use clone() as well:

$('.button').click( function() { 
     var bio = $('.bio p'); 
     var excerpt = $('.excerpt'); 

     // empty 
     excerpt.empty(); 

     // replace
     bio.clone().appendTo(excerpt); 

});

Or you could clone it first, obviously:

$('.button').click( function() { 
     var bio = $('.bio p').clone(); 
     var excerpt = $('.excerpt'); 

     // empty 
     excerpt.empty(); 

     // replace
     bio.appendTo(excerpt); 

});
share|improve this answer
Thanks man this is great. – Ankur Dec 7 '11 at 19:46

Try this, as Jon suggested:

 $('.button').click( function() { 
      var bio = $('.bio p'); 
      var excerpt = $('.excerpt'); 

      // empty 
      excerpt.empty(); 

      // replace
      bio.clone().appendTo(excerpt); 
 }); 
share|improve this answer

While some of the other answers will probably work, this seems pretty terse.

$('.button').click( function() { 
    $('.excerpt').html($('.bio').html());
});
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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