Skip to content

Instantly share code, notes, and snippets.

@vincentorback
Last active January 8, 2017 13:34
Show Gist options
  • Save vincentorback/cdb28678d5a1f67e4860622f282c9127 to your computer and use it in GitHub Desktop.
Save vincentorback/cdb28678d5a1f67e4860622f282c9127 to your computer and use it in GitHub Desktop.
Listen to modifications to the DOM
const observer = new MutationObserver(function (mutations) {
// Do the things
});
let targetEl = document.documentElement; // Can be any element
observer.observe(targetEl, {
childList: true,
subtree: true,
attributes: true,
characterData: true
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment