Safari on iPhone automatically creates links for strings of digits that appear to the telephone numbers. I am writing a web page containing an IP address, and Safari is turning that into a phone number link. Is it possible to disable this behavior for a whole page or an element on a page?

link|improve this question

See also stackoverflow.com/questions/3649702/… – jrummell Dec 13 '11 at 18:29
feedback

12 Answers

up vote 91 down vote accepted

This seems to be the right thing to do, according to the Safari Web Content Guide for iPhone:

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

If you disable this but still want telephone links, you can still use the "tel" URI scheme.

link|improve this answer
This doesn´t work for me for some reason, do you have any suggestion. – Tomas Jansson Mar 8 '11 at 12:40
This simply doesn't work. Not for web apps on iOS 4.3.1 anyway. – mhenry1384 May 18 '11 at 15:37
2  
4.2.1 on iPhone works; developer.apple.com/library/ios/#featuredarticles/… – Mark Brackett May 27 '11 at 20:22
This isn't really an answer per se -- i'm just trying to lend my voice to say that this works in iOS 4.3.3, at least for me. cheers – somewhatsapient Jun 17 '11 at 3:37
feedback

I was having the same problem. I found a property on the UIWebView that allows you to turn off the data detectors.

self.webView.dataDetectorTypes = UIDataDetectorTypeNone;
link|improve this answer
At last, a solution that worked for me. Of course this will only work with people writing their own objective-c application using UIWebView, and not using the Safari app. Thanks!! – iandotkelly Aug 26 '11 at 1:21
feedback

Add this, I think it is what you're looking for:

<meta name = "format-detection" content = "telephone=no">
link|improve this answer
feedback

Think I've found a solution: put the number inside a <label> element. Haven't tried any other tags, but <div> left it active on the home screen, even with the telephone=no attribute.

It seems obvious from earlier comments that the meta tag did work, but for some reason has broken under the later versions of iOS, at least under some conditions. I am running 4.0.1.

link|improve this answer
Hi Bob. If you want to put in HTML code examples, you have to wrap the code in backticks, <like this>. (Stack Overflow uses a formatting language called Markdown.) I’ll edit your answer accordingly. – Paul D. Waite Aug 9 '10 at 22:11
That didn't ultimately work - when I reloaded the App, the link hiliting was back. I have resorted to adding a`#` character to the front of the phone number: according to the Apple doc "Apple URL Scheme Reference": "Specifically, if a URL contains the * or # characters, the Phone application does not attempt to dial the corresponding phone number." – BobFromBris Aug 10 '10 at 7:59
You should remove your answer, since it doesn't work. As you yourself acknowledge in the above comment. – mhenry1384 May 18 '11 at 15:38
The # worked for me. – Michael Morrison Jun 1 '11 at 3:20
feedback

I had an ABN (Australian Business Number) that iPad Safari insisted on turning into a phone number link. None of the suggestions helped. My solution was to put img tags between the numbers.

ABN 98<img class="PreventSafariFromTurningIntoLink" /> 009<img /> 675<img /> 709

The class exists only to document what the img tags are for.

Works on iPad 1 (4.3.1) and iPad 2 (4.3.3).

link|improve this answer
Unfortunately, in Internet Explorer I get those broken image icons. Adding width="0" height="0" helps, but still a single pixel is displayed. – Geert Jul 29 '11 at 11:17
feedback

My experience is the same as some others mentioned. The meta tag...

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

...works when the website is running in Mobile Safari (i.e., with chrome) but stops working when run as a webapp (i.e., is saved to home screen and runs without chrome).

My less-than-ideal solution is to insert the values into input fields...

<input type="text" readonly="readonly" style="border:none;" value="3105551212">

It's less than ideal because, despite the border being set to none, iOS renders a multi-pixel gray bar above the field. But, it's better than seeing the number as a link.

link|improve this answer
feedback

Solution for Webview!

For PhoneGap-iPhone / PhoneGap-iOS applications, you can disable telephone number detection by adding the following to your project’s application delegate:

// ...

- (void)webViewDidStartLoad:(UIWebView *)theWebView 
{
    // disable telephone detection, basically <meta name="format-detection" content="telephone=no" />
    theWebView.dataDetectorTypes = UIDataDetectorTypeAll ^ UIDataDetectorTypePhoneNumber;

    return [ super webViewDidStartLoad:theWebView ];
}

// ...

source:http://solutions.michaelbrooks.ca/2011/02/09/disable-telephone-detection-in-phonegap-ios/

link|improve this answer
2  
Actually forget the above, an ever easier way in xcode 4 is to simply select the webview in teh xib file and untick 'phone detection'. Simples :D – badger110 Oct 15 '11 at 14:08
Went in to implement the awoodland's code before I read badger110 comment. So there I am, in AppDelegate.m when it occurs to me that I've seen this somewhere. I start looking around, find the checkbox in xib file and I think I've just discovered something magical. I come back to post this glorious discovery and find badger110's comment was there all along. TL DR: Read the comments first, ya knuckle head. – Tina D. Nov 30 '11 at 15:30
feedback

You could try encoding them as HTML entities:

&#48; = 0
&#57; = 9
link|improve this answer
feedback

I had the same problem, but on an iPad web app.

Unfortunately, neither...

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

nor ...

&#48; = 0
&#57; = 9

... worked.

But, here's three ugly hacks:

  • replacing the number "0" with the letter "O"
  • replacing the number "1" with the letter "l"
  • insert a meaningless span: e.g., 555.5<span>5</span>5.5555

Depending on the font you use, the first two are barely noticeable. The latter obviously involves superfluous code, but is invisible to the user.

Kludgy hacks for sure, and probably not viable if you're generating your code dynamically from data, or if you can't pollute your data this way.

But, sufficient in a pinch.

link|improve this answer
The span idea sounded slick but it didn't work for me. – mhenry1384 May 18 '11 at 15:40
feedback

To disable phone number detection on part of a page, wrap the affected text in an anchor tag with href="#". If you do this, mobile Safari and UIWebView should leave it alone.

<a href="#"> 1234567 </a>
link|improve this answer
This is what I ended up doing since the meta tag didn't work. However, it's probably better done with <a href="javascript:;"> to prevent side effects from a URL change. – JustJohn Dec 13 '11 at 23:28
feedback

Same problem in Sencha Touch app solved with meta tag (<meta name="format-detection" content="telephone=no">) in index.html of app.

link|improve this answer
feedback

does not work for emails: if the HTML you are preparing is for an email, the metatag will be ignored.

If what you are targeting are emails, here's yet another ugly-but-works solution for ya'll:

Example of some HTML you want to avoid being linked or auto formatted:

will cease operations <span class='ios-avoid-format'>on June 1,
2012</span><span></span>.

And the CSS that will make the magic happen:

@media only screen and (device-width: 768px) and (orientation:portrait){
span.ios-date{display:none;}
span.ios-date + span:after{content:"on June 1, 2012";}
}

The drawback: you may need a media query for each of the ipad/iphone portrait/landscape combos

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.