iphone sdk: How to get rid of the action sheet in UIWebView?

iphone, javascript, pressed, uiactionsheet, uiwebview

Solution

You can achieve this using CSS:

* {
   -webkit-touch-callout:none;
}

Problem

I have a UIWebView and when I press a textual link (for at least a second) some kind of UIActionSheet appears with 3 buttons (open, copy and cancel) - Is there a way to prevent it from appearing? Thanks

Original source