iPad Safari: How to disable the quick blinking effect when a link has been hit

cat picture cat · Aug 18, 2010 · Viewed 47.5k times · Source

Is there any way to disable that?
I only mean in the browser... When you click a link or a button or a div that has a click function on it, it flickers a grey box where you clicked quickly. How do i prevent this?

Answer

kennytm picture kennytm · Aug 18, 2010

You could set a transparent color to the -webkit-tap-highlight-color property of that element.

a {
    -webkit-tap-highlight-color: transparent;
}