Reputation: 541
I've tried this old solution but it doesn't work.
I'm using android 4.4 which has a major update for the web view widget. My web application is based on jquery mobile
When I click on a link in my web application, the web view put an orange border on the active link.
Upvotes: 0
Views: 622
Reputation: 4412
You can specify outline: none;
in your CSS to hide the focus ring. Here's some more information: http://devtacular.com/articles/bkonrad/how-to-remove-chromes-orange-outline/
However, be aware that users navigating using a keyboard may be relying on the orange outline to indicate which element currently has focus, so you should consider providing some other affordance for them.
Upvotes: 2