How to disable phone number linking in Mobile Safari? - Stack Overflow most recent 30 from stackoverflow.com2009-12-06T05:57:27Zhttp://stackoverflow.com/feeds/question/226131http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/226131/how-to-disable-phone-number-linking-in-mobile-safari5How to disable phone number linking in Mobile Safari?benzado2008-10-22T15:00:44Z2008-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#2262291Answer by Diodeus for How to disable phone number linking in Mobile Safari?Diodeus2008-10-22T15:14:28Z2008-10-22T15:14:28Z<p>You could try encoding them as HTML entities:</p>
<pre><code>&#48; = 0
&#57; = 9
</code></pre>
http://stackoverflow.com/questions/226131/how-to-disable-phone-number-linking-in-mobile-safari/226247#2262473Answer by Chuck for How to disable phone number linking in Mobile Safari?Chuck2008-10-22T15:18:03Z2008-10-22T15:18:03Z<p>Add this, I think it is what you're looking for:</p>
<pre><code><meta name = "format-detection" content = "telephone=no">
</code></pre>
http://stackoverflow.com/questions/226131/how-to-disable-phone-number-linking-in-mobile-safari/227238#2272387Answer by lewinski for How to disable phone number linking in Mobile Safari?lewinski2008-10-22T19:36:47Z2008-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><meta name="format-detection" content="telephone=no">
</code></pre>
<p>If you disable this but still want telephone links, you can still use the "tel" URI scheme.</p>