Skip to content

Instantly share code, notes, and snippets.

@Farmatique
Created September 8, 2016 12:48
Show Gist options
  • Save Farmatique/83d164762277f7dc8409fc110cea8eed to your computer and use it in GitHub Desktop.
Save Farmatique/83d164762277f7dc8409fc110cea8eed to your computer and use it in GitHub Desktop.
prevent goto link by clicking on <a>
jQuery('a').on('click', function(event){
event.preventDefault();
/* other stuff */
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment