Skip to content

Instantly share code, notes, and snippets.

@mwbrooks
Created February 9, 2011 18:57
Show Gist options
  • Save mwbrooks/819020 to your computer and use it in GitHub Desktop.
Save mwbrooks/819020 to your computer and use it in GitHub Desktop.
Disable telephone number detection in PhoneGap-iOS
// ...
- (void)webViewDidStartLoad:(UIWebView *)theWebView
{
// disable telephone detection, basically <meta name="format-detection" content="telephone=no" />
theWebView.dataDetectorTypes = UIDataDetectorTypeAll ^ UIDataDetectorTypePhoneNumber;
return [ super webViewDidStartLoad:theWebView ];
}
// ...
@nuvocode
Copy link

You can also disable telephone number highlighting using this meta tag.
meta name="format-detection" content="telephone=no"

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment