I'm trying to remove the highlight on tap of a web page in the iPad with the css
-webkit-tap-highlight-color: rgba(0, 0, 0, 0)
This works great when using directly the browser in my iPad2. However if I move the page to a web app, with the a nice big icon, the behavior is not any longer working. Weirdo no ?
Setting
document.documentElement.style.webkitTouchCallout = "none";
as pointed in this question does not work
Some ideas, hints are welcomed