views:

119

answers:

1

When you click a link in the Android browser, the target link area gets highlighted with an orange box by default. A longpress then opens up the context menu for link handling (copy, paste, new window, etc). Is there a way to disable either / both of these in webview? I'm using the highlight code in scriptaculous and the default android link styling is being laid over top of the effect.

+1  A: 

This might be useful: How to Hide Android WebView Highlight Border

Hopefully it is.

I82Much
Exactly right! Thanks so much. I'm pasting the CSS here just in case that site ever disappears.* {-webkit-tap-highlight-color: rgba(0, 0, 0, 0);}
binaryorganic