Skip to content

Instantly share code, notes, and snippets.

@Blumed
Created June 22, 2017 14:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Blumed/3fdf930e0f00d81d9c12ea2eb2a6f8b6 to your computer and use it in GitHub Desktop.
Save Blumed/3fdf930e0f00d81d9c12ea2eb2a6f8b6 to your computer and use it in GitHub Desktop.
Handy way to prevent default by adding logic to a click with # in href
$('a').on('click', function(e) {
if($(this).attr('href') === '#') {
e.preventDefault();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment