How to disable link to phone number when on Desktop?

后端 未结 20 946
清酒与你
清酒与你 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:09

    I am adding the following css through javascript when mobile device is detected.

    pointer-events:none
    

    The js code is:

    var a = document.getElementById("phone-number");
    if (Platform.isMobile())   // my own mobile detection function
        a.href = "tel:+1.212.555.1212";
    else
        $(a).css( "pointer-events", "none" );
    

提交回复
热议问题