Skip to content

Instantly share code, notes, and snippets.

@pavr0m
Created May 31, 2020 21:34
Show Gist options
  • Save pavr0m/9c6ff4255e775caa1474de11f2c6ee3a to your computer and use it in GitHub Desktop.
Save pavr0m/9c6ff4255e775caa1474de11f2c6ee3a to your computer and use it in GitHub Desktop.
Observe DOM Mutatinos in the document
var say = (msg)=>{
console.log(msg);
}
const observer = new MutationObserver( (mutationList)=>{
say(mutationList);
});
var targetNode = document.querySelector(nodeSelector);
observer.observe(targetNode, {subtree: true, attributes: true} );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment