2

I list a phone number on my website at the moment and it is currently linked to "tel:myphonenumber"... how can I remove this a href unless the site is loaded on a mobile?

Reece
  • 737
  • 4
  • 20
  • 38

3 Answers3

0

This has already been answered here How can I make an <a href> only active on mobile devices?

You should use microdata. As Mobile phones will recognize it, and it won't affect normal web browsers.

<div class="vcard">
    <div class="tel">
        12345555555
    </div>
</div>
Community
  • 1
  • 1
Rami Alloush
  • 1,768
  • 2
  • 20
  • 27
0

HTML

 <td><a href="tel:888888">888888</a></td>

CSS

@media screen and (min-width: 1224px) { a[href*="tel:"] { pointer-events: none; } }

Ashutosh Jha
  • 13,573
  • 9
  • 48
  • 77
-2

Unfortunately there is no way to accomplish that.


Brian Cray
  • 1,247
  • 1
  • 7
  • 19