Skip to content

Instantly share code, notes, and snippets.

@Toxiapo
Created May 15, 2020 13:56
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 Toxiapo/267f50466c25f12d3f339cd224774d9f to your computer and use it in GitHub Desktop.
Save Toxiapo/267f50466c25f12d3f339cd224774d9f to your computer and use it in GitHub Desktop.
Monitor Text node change
var textNode = document.querySelector("$SELECTOR");
textNode.addEventListener("DOMCharacterDataModified", action, false);
function action(evt) {
if($CONDITION) {
window.open("http://www.google.com", "test" ,"modal=yes");
window.focus();
textNode.removeEventListener("DOMCharacterDataModified", action, false);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment