How to disable link to phone number when on Desktop?

jaycodez picture jaycodez · Mar 15, 2013 · Viewed 52.9k times · Source

How can I add a phone number to a website that is clickable but hides the link when I'm browsing on a website that doesn't support touch.

I could use Modernizr to set it up although. I don't know how.

<a href="tel:1300723579"><p><img src="assets/images/bt_calltoaction.gif" alt="View Projects" width="306" height="60"></p></a>

Answer

Jamie Cottrell picture Jamie Cottrell · Feb 11, 2014

Could you just have the code in twice? i.e...

<div class="desktoptel">0800 000 000</div>
<div class="mobiletel"><a href="tel:0800-000-000">0800-000-000</div>

Then just 'display:none;' on the relevant class depending on your browser sizes?