Skip to content

Instantly share code, notes, and snippets.

@kmlprtsng
Created October 14, 2013 08:55
Show Gist options
  • Save kmlprtsng/6972889 to your computer and use it in GitHub Desktop.
Save kmlprtsng/6972889 to your computer and use it in GitHub Desktop.
Cancel Hyperlink click
//<a href="#" onClick="return false;"> //Most accepted Solution
//<a href="javascript:void(0)"> ... </a> //Problem: breaks when linking images in IE
//return this from the method.
return false;
//or using jquery
e.stopPropagation(); //stop the event from bubbling
e.preventDefault(); // stop the default functionality
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment