Skip to content

Instantly share code, notes, and snippets.

@oosby
Created July 13, 2016 02:52
Show Gist options
  • Save oosby/85e94b65c9f7712db32aac32c43dc34d to your computer and use it in GitHub Desktop.
Save oosby/85e94b65c9f7712db32aac32c43dc34d to your computer and use it in GitHub Desktop.
const mutationObserver = new MutationObserver((e) => {
if (e[0].removedNodes) {
console.log('%cremoved nodes %o', 'color:aquamarine', e[0].removedNodes);
}
});
// watch just the child nodes
mutationObserver.observe(document.querySelector('main'), { childList: true });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment