0

My website HTML contains a phone number as a text. So, the iPad tablet interprets that as a phone - and turns it into an underline blue link.

Is it possible to format phone number to a different style?

Vadim Kotov
  • 8,084
  • 8
  • 48
  • 62
tester2001
  • 1,053
  • 3
  • 14
  • 24

1 Answers1

0

You can turn off telephone number detection by adding the following to your page:

<meta name="format-detection" content="telephone=no">

Source: Apple URL Scheme Reference : Phone Links

Be sure to consider other devices and operating systems as well. For instance, to disable this on the BlackBerry, the following is needed:

<meta http-equiv="x-rim-auto-match" content="none">

Source: BlackBerry: Link Behavior

Sampson
  • 265,109
  • 74
  • 539
  • 565