Are events lost in jQuery when you remove() an element and append() it elsewhere? Are events lost in jQuery when you remove() an element and append() it elsewhere? jquery jquery

Are events lost in jQuery when you remove() an element and append() it elsewhere?


The jQuery detach() function is the same as remove() but preserves the event handlers in the object that it returns. If you have to remove the item and place it somewhere else with everything you can just use this.

var objectWithEvents = $('#old').detach();$('#new').append(objectWithEvents);

Check the API docs here: http://api.jquery.com/detach/


Yes, jQuery's approach with remove() is to unbind everything bound with jQuery's own bind (to prevent memory leaks).

However, if you just want to move something in the DOM, you don't have to remove() it first. Just append to your heart's content, the event bindings will stick around :)

For example, paste this into your firebug on this page:

$('li.wmd-button:eq(2)').click(function(){ alert('still here!') }).appendTo(document.body)

And now scroll down to the bottom of this page and click on the little globy icon now buried under the SO footer. You will get the alert. All because I took care to not remove it first.


use jQuery1.3.1 live() to bind events and you won't need to worry about this..

Update: live events are deprecated now, but you can get the same effect from $(document).on().