Skip to content
Advertisement

cloneNode without losing event listener

how can i move my html element without losing the event listener attached to the button?

The child button’s event listener does not work after cloning and removing the original element

JavaScript

Advertisement

Answer

You’ve said you want to move it, but what you’re doing is cloning it, saving the clone, and then removing and throwing away the original. Instead, don’t clone it, move it:

JavaScript

That will remove element from its current parent and put it in its new parent (ul), with all event listeners still in place.

Live Example:

JavaScript
JavaScript
JavaScript

That said, I often find event delegation to be best when working with elements that move between parents, but it really depends on the situation.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement