vote up 3 vote down star
3

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?

flag

3 Answers

vote up 6 vote down check

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|flag
vote up 3 vote down

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

<meta name = "format-detection" content = "telephone=no">
link|flag
vote up 1 vote down

You could try encoding them as HTML entities:

&#48; = 0
&#57; = 9
link|flag

Your Answer

Get an OpenID
or

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