How to disable phone number linking in Mobile Safari? - Stack Overflow most recent 30 from stackoverflow.com 2009-12-06T05:57:27Z http://stackoverflow.com/feeds/question/226131 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/226131/how-to-disable-phone-number-linking-in-mobile-safari 5 How to disable phone number linking in Mobile Safari? benzado 2008-10-22T15:00:44Z 2008-10-22T19:36:47Z <p>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?</p> http://stackoverflow.com/questions/226131/how-to-disable-phone-number-linking-in-mobile-safari/226229#226229 1 Answer by Diodeus for How to disable phone number linking in Mobile Safari? Diodeus 2008-10-22T15:14:28Z 2008-10-22T15:14:28Z <p>You could try encoding them as HTML entities:</p> <pre><code>&amp;#48; = 0 &amp;#57; = 9 </code></pre> http://stackoverflow.com/questions/226131/how-to-disable-phone-number-linking-in-mobile-safari/226247#226247 3 Answer by Chuck for How to disable phone number linking in Mobile Safari? Chuck 2008-10-22T15:18:03Z 2008-10-22T15:18:03Z <p>Add this, I think it is what you're looking for:</p> <pre><code>&lt;meta name = "format-detection" content = "telephone=no"&gt; </code></pre> http://stackoverflow.com/questions/226131/how-to-disable-phone-number-linking-in-mobile-safari/227238#227238 7 Answer by lewinski for How to disable phone number linking in Mobile Safari? lewinski 2008-10-22T19:36:47Z 2008-10-22T19:36:47Z <p>This seems to be the right thing to do, according to the <a href="http://developer.apple.com/webapps/docs/documentation/AppleApplications/Reference/SafariWebContent/AppleApplicationsURLSchemes/chapter_950_section_3.html" rel="nofollow">Safari Web Content Guide for iPhone</a>:</p> <pre><code>&lt;meta name="format-detection" content="telephone=no"&gt; </code></pre> <p>If you disable this but still want telephone links, you can still use the "tel" URI scheme.</p>