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

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

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

Leave a Comment