Skip to content

Instantly share code, notes, and snippets.

@commuterjoy
Created September 3, 2012 11:17
Show Gist options
  • Save commuterjoy/3608626 to your computer and use it in GitHub Desktop.
Save commuterjoy/3608626 to your computer and use it in GitHub Desktop.
Disable all links on a page
Array.prototype.forEach.call(document.querySelectorAll('a'), function(link) {
link.addEventListener('click', function(e) {
e.preventDefault();
})
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment