Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 7562293
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 30, 20262026-05-30T13:22:49+00:00 2026-05-30T13:22:49+00:00

Is there a way to stop Microsoft Lync from detecting phone numbers in a

  • 0

Is there a way to stop Microsoft Lync from detecting phone numbers in a web page, and adding its click to call icon to that phone number in Internet Explorer?

Obviously the client can disable this functionality in Internet Explorer, however I would like to disable this for all who visit a particular website, as it is not playing nicely with embedded fonts in use on the website.

To do this for Skype I would add the following meta tag into my web page’s header:

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

Thanks,

Peter

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-30T13:22:50+00:00Added an answer on May 30, 2026 at 1:22 pm

    I’ve found a few options, but none are as simple or clean as adding a META tag to the page (which Microsoft absolutely should give us as an option).

    Option #1: Insert markup into your phone number

    Adding something like a blank SPAN into the middle of a phone number is sufficient to throw off Lync’s detection. This is a highly manual option, as it requires you to edit every phone number on a page. But it could be handy for disabling one or two numbers on a page, while allowing any others to be detected.

    <p>For help, please call 1-<span></span>800-555-1234.</p>
    

    Option #2: Script away the additional markup

    Lync appears to format phone numbers in a very predictable way. It wraps a SPAN around the number using a (as far as I can tell) consistent class name, then appends an A anchor which contains the dialing icon.

    <!-- Lync formatting -->
    <p>For help, please call
      <span class="baec5a81-e4d6-4674-97f3-e9220f0136c1" style="white-space: nowrap;">
        1-800-555-1234 
        <a title="Call: 1-800-555-1234" style="...">
          <img title="Call: 1-800-555-1234" src="data:image/png;base64,..."/>
        </a>
      </span>
    .</p>
    

    Given that very unique Guid used for the classname, you can target that with your own client script and hide it or do whatever. A jQuery approach to hide all Lync icons might look like:

    $("span.baec5a81-e4d6-4674-97f3-e9220f0136c1 > a").hide();
    

    UPDATE! Option #2a: Style away the additional markup

    Using the same technique as the script example above, you can simply style away the offending anchor tag using CSS. This should be preferable to a script-based solution.

    span.baec5a81-e4d6-4674-97f3-e9220f0136c1 > a {
       display: none !important;
    }
    

    Option #3: Use a TEL anchor as a preemptive strike

    There is a standardized way to markup a phone number for compatibility with VOIP/dialing programs. It uses a standard A anchor with a tel: protocol. This has the dual effect of not only disabling Lync’s intrusive markup, but also providing better support for anything that knows how to dial a number (Skype) and mobile devices (both iOS and Android).

    <p>For help, please call <a href="tel:1-800-555-1234">1-800-555-1234</a>.</p>
    

    Now Lync users can still click the link, which will prompt them to “open” it with Lync, regardless of the browser they use (I’ve confirmed compatibility with IE9, Firefox and Chrome). This strikes me as the best of both worlds: compatibility with users’ telephony application, without trouncing all over your markup and layout.


    Until Microsoft comes up with a META tag to solve these issues, we’ve opted for #3.


    UPDATE: Incorporated the suggestion from @marsman57 for improvement to CSS option #2

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Is there a way to stop setTimeout(myfunction(),10000); from counting up when the page isn't
Hello Is there a way to stop TFSBUILD from adding the buildID/BuildName to the
Is there any way to stop the callout from automatically appearing on an embedded
Is there any way to stop IB in XCode 4 from zooming to try
Is there a way to stop Edit>Find in Xcode from searching dynamically as I
Is there any way to stop OpenCL kernel from execution? For example, I launch
Is there a way to stop other subs from running while in a separate
Is there any way to stop PowerShell from removing console message colors when using
Is there a way to stop Twisted reactor from automatically swallowing exceptions (eg. NameError)?
I wanted to know if there is a way to stop Javascript from calling

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.