1

I'm developing small web-mobile application. Some my page contains float number. But on Opera-mobile this number is displayed as link to deal phone number. I have found similar issue for Safari:

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

But this doesn't works for Opera-mobile. How to to fix it?

Dewfy
  • 23,277
  • 13
  • 73
  • 121

1 Answers1

1

Although likely not the best solution you can use javascript to find the <a href="tel..." blocks and remove the href attribute from there.

Erik
  • 139
  • 1
  • 1
  • 12