Skip to content

Instantly share code, notes, and snippets.

@vldvel
Created March 22, 2018 08:26
Show Gist options
  • Save vldvel/afd2c720227d2af6c9bf658d92b88da5 to your computer and use it in GitHub Desktop.
Save vldvel/afd2c720227d2af6c9bf658d92b88da5 to your computer and use it in GitHub Desktop.
MutationObserver target
const target1 = document; // correct
const target2 = document.body; // correct
const target3 = document.getElementById('blockId'); // correct
const target4 = window; // wrong
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment