If a DOM Element is removed, are its listeners also removed from memory?

112,252

Solution 1

Modern browsers

Plain JavaScript

If a DOM element which is removed is reference-free (no references pointing to it) then yes - the element itself is picked up by the garbage collector as well as any event handlers/listeners associated with it.

var a = document.createElement('div');
var b = document.createElement('p');
// Add event listeners to b etc...
a.appendChild(b);
a.removeChild(b);
b = null; 
// A reference to 'b' no longer exists 
// Therefore the element and any event listeners attached to it are removed.

However; if there are references that still point to said element, the element and its event listeners are retained in memory.

var a = document.createElement('div');
var b = document.createElement('p'); 
// Add event listeners to b etc...
a.appendChild(b);
a.removeChild(b); 
// A reference to 'b' still exists 
// Therefore the element and any associated event listeners are still retained.

jQuery

It would be fair to assume that the relevant methods in jQuery (such as remove()) would function in the exact same way (considering remove() was written using removeChild() for example).

However, this isn't true; the jQuery library actually has an internal method (which is undocumented and in theory could be changed at any time) called cleanData() (here is what this method looks like) which automatically cleans up all the data/events associated with an element upon removal from the DOM (be this via. remove(), empty(), html("") etc).


Older browsers

Older browsers - specifically older versions of IE - are known to have memory leak issues due to event listeners keeping hold of references to the elements they were attached to.

If you want a more in-depth explanation of the causes, patterns and solutions used to fix legacy IE version memory leaks, I fully recommend you read this MSDN article on Understanding and Solving Internet Explorer Leak Patterns.

A few more articles relevant to this:

Manually removing the listeners yourself would probably be a good habit to get into in this case (only if the memory is that vital to your application and you are actually targeting such browsers).

Solution 2

regarding jQuery:

the .remove() method takes elements out of the DOM. Use .remove() when you want to remove the element itself, as well as everything inside it. In addition to the elements themselves, all bound events and jQuery data associated with the elements are removed. To remove the elements without removing data and events, use .detach() instead.

Reference: http://api.jquery.com/remove/

jQuery v1.8.2 .remove() source code:

remove: function( selector, keepData ) {
    var elem,
        i = 0;

    for ( ; (elem = this[i]) != null; i++ ) {
        if ( !selector || jQuery.filter( selector, [ elem ] ).length ) {
            if ( !keepData && elem.nodeType === 1 ) {
                jQuery.cleanData( elem.getElementsByTagName("*") );
                jQuery.cleanData( [ elem ] );
            }

            if ( elem.parentNode ) {
                elem.parentNode.removeChild( elem );
            }
        }
    }

    return this;
}

apparently jQuery uses node.removeChild()

According to this : https://developer.mozilla.org/en-US/docs/DOM/Node.removeChild ,

The removed child node still exists in memory, but is no longer part of the DOM. You may reuse the removed node later in your code, via the oldChild object reference.

ie event listeners might get removed, but node still exists in memory.

Solution 3

Don't hesitate to watch heap to see memory leaks in event handlers keeping a reference to the element with a closure and the element keeping a reference to the event handler.

Garbage collector do not like circular references.

Usual memory leak case: admit an object has a ref to an element. That element has a ref to the handler. And the handler has a ref to the object. The object has refs to a lot of other objects. This object was part of a collection you think you have thrown away by unreferencing it from your collection. => the whole object and all it refers will remain in memory till page exit. => you have to think about a complete killing method for your object class or trust a mvc framework for example.

Moreover, don't hesitate to use the Retaining tree part of Chrome dev tools.

Solution 4

Regarding jQuery, the following common methods will also remove other constructs such as data and event handlers:

remove()

In addition to the elements themselves, all bound events and jQuery data associated with the elements are removed.

empty()

To avoid memory leaks, jQuery removes other constructs such as data and event handlers from the child elements before removing the elements themselves.

html()

Additionally, jQuery removes other constructs such as data and event handlers from child elements before replacing those elements with the new content.

Solution 5

Just extending other answers...

Delegated events handlers will not be removed upon element removal.

$('body').on('click', '#someEl', function (event){
  console.log(event);
});

$('#someEL').remove(); // removing the element from DOM

Now check:

$._data(document.body, 'events');
Share:
112,252
Julian Krispel-Samsel
Author by

Julian Krispel-Samsel

jkrsp.com

Updated on July 08, 2022

Comments

  • Julian Krispel-Samsel
    Julian Krispel-Samsel almost 2 years

    If a DOM Element is removed, are its listeners removed from memory too?

  • Oleg V. Volkov
    Oleg V. Volkov over 11 years
    You're only adding confusion - jQuery does nothing that with handlers that simple removeChild wouldn't. Both also return you a reference that you may keep to reattach latter (in which case it obviously remains in memory) or throw way (in which case it is eventually picked up by GC and removed).
  • Sreenath S
    Sreenath S over 11 years
    i know :D. so where you the one who edited the question ? cos i could have sworn that there was something about using jquery to remove a DOM element, in the question before. now my answer sounds like i'm explaining things just to stroke my ego. hey you can always downvote
  • Lothre1
    Lothre1 about 11 years
    According to the jquery Documentation when using remove() method over an element, all event listeners are removed from memory. This affects the element it selft and all child nodes. If you want to keep the event listners in memory you should use .detach() instead. Useful when the removed elements are going to be inserted again on the dom.
  • CBeTJlu4ok
    CBeTJlu4ok over 10 years
    If the element contains child elemens, will it detach event listners on child elements too?
  • vsync
    vsync over 9 years
    @Lothre1 - that is only when using the remove method. most of the time the DOM will just get erased completely. (like turbo links or something). I am wondering how is memory affected if I do document.body.innerHTML = '' ...
  • Lothre1
    Lothre1 over 9 years
    @vsync from my personal experience doing something like $('#EL').html('') will also remove all event of the element and child elements. So, instead of document.body.innerHtml use $('body').html('');
  • vsync
    vsync over 9 years
    I would need more than "personal experience", more like hard data and tests and links to specs which say how memory keeps persistent on nodes that are no longer in the document, this is too important to just trust somebody's word without proof :)
  • dsgriffin
    dsgriffin over 9 years
    @Lothre1 Thanks - I've dug a bit deeper and found out how jQuery acts differently from regular JavaScript in this respect. Have updated the answer.
  • Paolo Fulgoni
    Paolo Fulgoni about 9 years
    you statement should be supported by API documentation, examples, etc.
  • Yangshun Tay
    Yangshun Tay almost 7 years
    The event handler is attached to body and not #someEl, naturally the handler shouldn't be removed as long as body is still here.
  • Fangxing
    Fangxing over 6 years
    This can be removed manually : stackoverflow.com/questions/22400907/…
  • mrsubwoof
    mrsubwoof about 5 years
    Does using jQuery's .empty() detach the listeners attached via addEventListener as well or just the ones attached via $(element).on()?
  • Raja
    Raja about 3 years
    When you say a "reference still exists" I can see how that would apply with a global variable. But what if the event listener was created inside a function? So the only reference is inside that function scope. That seems like a cycle the browser could reclaim.