Skip to content

Instantly share code, notes, and snippets.

@ndesmic
Created September 29, 2018 06:04
Show Gist options
  • Save ndesmic/991990f86155e5d1ab9d5c02f8f9cb29 to your computer and use it in GitHub Desktop.
Save ndesmic/991990f86155e5d1ab9d5c02f8f9cb29 to your computer and use it in GitHub Desktop.
Debug Scripts
function breakOn(selector){ //breaks on selector
var o = new MutationObserver(() => {
console.log("hello!");
debugger;
});
o.observe(document.querySelector(selector), {
childList: true
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment