Skip to content

Instantly share code, notes, and snippets.

@benschwarz
Created December 28, 2012 23:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save benschwarz/4403244 to your computer and use it in GitHub Desktop.
Save benschwarz/4403244 to your computer and use it in GitHub Desktop.
Mobile tap highlighting. Don't use `:hover`, don't use `:active`
$('a').on('touchstart', function(event) {
return $(this).addClass('tapped');
});
$('a').on('touchend', function() {
return $(this).removeClass('tapped');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment