How to remove automatic phone number hyperlinks from Microsoft Edge

I have timestamps in a web application as

1 2015-08-06 15:16:54

which continues to be decorated with the Microsoft Edge browser with links to phone numbers. I do not want this. This appears to be the "tel" protocol, and clicking on it will try to open any application configured to work with the "tel" protocol. I know there is a meta tag that you can add to pages so that they are not decorated as such on iOS devices, but how do you do that in Microsoft Edge?

+3


source to share


1 answer


The solution that works on iOS devices also works for Microsoft Edge.

Adding a meta tag,

<meta name="format-detection" content="telephone=no">

      



will prevent the DOM document from being modified when parsed by the browser.

See: https://developer.apple.com/library/safari/featuredarticles/iPhoneURLScheme_Reference/PhoneLinks/PhoneLinks.html and How do I delete a phone number on an Iphone?

MSDN link: https://msdn.microsoft.com/en-us/library/dn265018(v=vs.85).aspx

+12


source







All Articles