Created
September 8, 2016 12:48
-
-
Save Farmatique/83d164762277f7dc8409fc110cea8eed to your computer and use it in GitHub Desktop.
prevent goto link by clicking on <a>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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