Skip to content

Instantly share code, notes, and snippets.

@anton-gorbikov
Created November 21, 2018 08:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save anton-gorbikov/9b611888d672003aec586e90818ffcfc to your computer and use it in GitHub Desktop.
Save anton-gorbikov/9b611888d672003aec586e90818ffcfc to your computer and use it in GitHub Desktop.
(function() {
$('#clickMe').on('click', function() {
console.log('aaa');
});
// Memory leak;
var button = document.querySelector('#clickMe');
button.parentNode.removeChild(button);
// No memory leak;
// $('#clickMe').remove();
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment