Skip to content

Instantly share code, notes, and snippets.

@lukeasrodgers
Last active December 12, 2015 10:19
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 lukeasrodgers/4758277 to your computer and use it in GitHub Desktop.
Save lukeasrodgers/4758277 to your computer and use it in GitHub Desktop.
log dom subtree modifications to the console (works in Chrome, not sure of other browsers)
document.body.addEventListener('DOMSubtreeModified', function(e) { console.log(e.target); });
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment