How to prevent phone numbers to be converted into Skype links?

后端 未结 14 700
猫巷女王i
猫巷女王i 2020-12-13 02:08

On those Windows machines with Skype installed, it tends to convert all phone-formatted numbers to Skype links so you can click it in order to make a call on Skype.

相关标签:
14条回答
  • 2020-12-13 02:41

    The official solution is to add the following meta tag to the head section of your webpage. This will prevent skype from doing any reformatting on phone numbers.

    <meta name="SKYPE_TOOLBAR" content="SKYPE_TOOLBAR_PARSER_COMPATIBLE" /> 

    This is a vendor-specific tag. See Skype Toolbar meta tag

    0 讨论(0)
  • 2020-12-13 02:42

    I just found that if you use the new HTML5 tel protocol it blocks the Skype junk from appearing:

    <a href="tel:+18001234567">1 800 123 4567</a>
    
    0 讨论(0)
提交回复
热议问题