Tag Archives: html

Disable WebView Telephone Number Detect

recently i ran into a problem , the meta tag

<meta name="format-detection" content="telephone=no">

does NOT work in mainscreen shotcut , or UIWebView. As a result, the numbers in my webapp became clickable.you have to add some obj-c code the disable this feature.

/**
 Called when the webview finishes loading.
 This stops the activity view and closes the imageview
*/
- (void)webViewDidFinishLoad:(UIWebView *)theWebView
{
theWebView.dataDetectorTypes = UIDataDetectorTypeNone;
return [ super webViewDidFinishLoad:theWebView ];
}

I didn’t find any solution in mainscreen shotcut.
Read more »

Safari Html Input

trackback:http://developer.apple.com/…/InputTypes.html

Safari supports many different input types. They can be specified using the type attribute of the input element. These input types are listed below.
Read more »