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?
|
|
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. Here is the relevant page at Apple's Developer Library. |
|||||||||||||||||
|
|
I was having the same problem. I found a property on the UIWebView that allows you to turn off the data detectors.
|
||||
|
|
Add this, I think it is what you're looking for:
|
|||
|
|
|
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/ |
|||||||
|
|
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). |
|||||
|
|
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. |
|||||||||
|
|
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. |
|||
|
|
|
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. |
||||
|
|
|
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.
|
||||
|
|
You could try encoding them as HTML entities:
|
|||
|
|
|
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 |
|||
|
|
|
Same problem in Sencha Touch app solved with meta tag ( |
||||
|
|
|
This answer trumps everything as of 6-13-2012:
Change the color to whatever matches your text, text decoration removes the underline, pointer events stops it from being viewed like a link in a browser (pointer doesn't change to a hand) This is perfect for HTML emails on ios and browser. |
||||
|
|
I have tested this myself and found that it works although it is certainly not an elegant solution. Inserting an empty span in the phone number will prevent the data detectors from turning it into a link.
|
|||
|
|
|
To disable the phone parsing appearance for specific elements, this CSS seems to do the trick:
The first rule disables the click, the second takes care of the styling. |
|||
|
|