Skip to content

Instantly share code, notes, and snippets.

@hu0p
Created August 14, 2019 13:13
Show Gist options
  • Save hu0p/d3c3bdd457d4b765c361c98cb6d4dd27 to your computer and use it in GitHub Desktop.
Save hu0p/d3c3bdd457d4b765c361c98cb6d4dd27 to your computer and use it in GitHub Desktop.
Disable navigation for all clicks on a page. This is useful for testing analytics tracking. Copy/paste in JS console
Array.from(document.querySelectorAll('a')).map( el => el.addEventListener("click", e => e.preventDefault()))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment