Skip to content

Instantly share code, notes, and snippets.

@lgedeon
Created November 24, 2015 02:33
Show Gist options
  • Save lgedeon/c848505aad28b20ea03e to your computer and use it in GitHub Desktop.
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.
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