Skip to content

Instantly share code, notes, and snippets.

@MilanGrubnic70
Created March 22, 2015 20:26
Show Gist options
  • Save MilanGrubnic70/db504e2d53da1dc5a769 to your computer and use it in GitHub Desktop.
Save MilanGrubnic70/db504e2d53da1dc5a769 to your computer and use it in GitHub Desktop.
preventDefault in JavaScript
$('a').click(function(evt){
// JavaScipt goes here
evt.preventDefault(); // don't follow link
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment