Created
December 28, 2012 23:52
-
-
Save benschwarz/4403244 to your computer and use it in GitHub Desktop.
Mobile tap highlighting. Don't use `:hover`, don't use `:active`
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
$('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