Skip to content

Instantly share code, notes, and snippets.

@anton-gorbikov
Created November 23, 2018 08:33
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/e161bc34a95d46e030f60413668623df to your computer and use it in GitHub Desktop.
Save anton-gorbikov/e161bc34a95d46e030f60413668623df to your computer and use it in GitHub Desktop.
var observer = new MutationObserver(function(mutations) {
debugger;
});
observer.observe(document.documentElement, {
childList: true,
subtree: true
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment