Created
November 24, 2015 02:33
-
-
Save lgedeon/c848505aad28b20ea03e to your computer and use it in GitHub Desktop.
Replace any click event with your own whether it has already been bound or not.
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(document).ready(function ($) { | |
$('.link').off("click").on("click", function (e) { | |
// add your click handling here | |
e.stopPropagation(); | |
return false; | |
}); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment