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?
feedback
|
|
This seems to be the right thing to do, according to the Safari Web Content Guide for iPhone:
If you disable this but still want telephone links, you can still use the "tel" URI scheme. | |||||||||||
feedback
|
|
I was having the same problem. I found a property on the UIWebView that allows you to turn off the data detectors.
| ||||
feedback
|
|
Add this, I think it is what you're looking for:
| |||
|
feedback
|
|
Think I've found a solution: put the number inside a 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. | |||||||||
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.
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). | |||
feedback
|
|
My experience is the same as some others mentioned. The meta tag...
...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...
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. | |||
|
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:
source:http://solutions.michaelbrooks.ca/2011/02/09/disable-telephone-detection-in-phonegap-ios/ | |||||||
feedback
|
|
I had the same problem, but on an iPad web app. Unfortunately, neither...
nor ...
... worked. But, here's three ugly hacks:
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. | ||||
|
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.
| ||||
feedback
|
|
Same problem in Sencha Touch app solved with meta tag ( | ||||
|
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:
And the CSS that will make the magic happen:
The drawback: you may need a media query for each of the ipad/iphone portrait/landscape combos | |||
|
feedback
|