Skip to content

Instantly share code, notes, and snippets.

@gkatsev
Created April 24, 2013 23:14
Show Gist options
  • Save gkatsev/5456373 to your computer and use it in GitHub Desktop.
Save gkatsev/5456373 to your computer and use it in GitHub Desktop.
preventDefault a click on android
if (/android/i.test(navigator.userAgent) && !/chrome/i.test(navigator.userAgent)) {
this.on('click', function(event) {
event.preventDefault();
event.stopPropagation();
});
} else {
this.on('touchend', function(event) {
event.preventDefault();
event.stopPropagation();
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment