Reputation: 369
Im having a problem with my app on android 4.1.1. i have created a app with html/javascript with phonegap. My problem is that when links get clicked they show the orange highlight. i was able to fix this with -webkit-tap-highlight-color: rgba(255, 255, 255, 0) or -webkit-tap-highlight-color: rgba(0, 0, 0, 0) but now i installed Jelly Bean and it is not working anymore.
Upvotes: 1
Views: 929
Reputation: 139
I ran into the same problem. I got rid of the orange highlight on Jelly Bean by using this:
* {-webkit-tap-highlight-color: transparent;}
Upvotes: 1