Skip to content

Instantly share code, notes, and snippets.

@jotapepinheiro
Created October 31, 2013 01:57
Show Gist options
  • Save jotapepinheiro/7243328 to your computer and use it in GitHub Desktop.
Save jotapepinheiro/7243328 to your computer and use it in GitHub Desktop.
var anchors = document.querySelectorAll('a');
[].forEach.call(anchors, function(e) {
e.addEventListener('click', function(evt) {
var link = this.href,
text = this.innerHTML;
// do some amazing stuff here =)
console.log(link, text);
// prevent the page to reload
evt.preventDefault();
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment