Skip to content

Instantly share code, notes, and snippets.

@cwardzala
Created January 18, 2012 18:07
Show Gist options
  • Save cwardzala/1634585 to your computer and use it in GitHub Desktop.
Save cwardzala/1634585 to your computer and use it in GitHub Desktop.
prevent clicks
var preventClick = function (event) {
event.preventDefault();
event.stopPropagation();
return false;
};
if (isMobile === true) {
   $('.post-attribution a').click(preventClick);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment