How to disable link to phone number when on Desktop?

后端 未结 20 1036
清酒与你
清酒与你 2021-02-03 23:47

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

20条回答
  •  春和景丽
    2021-02-04 00:12

    if you just wanted to disable the click on the mobile screens:

    if(typeof window.orientation !== 'undefined'){
        $('a[href^="tel:"]').on('click', function(e){
            e.preventDefaults();
        });
    }
    

    Hope this helps :)

提交回复
热议问题