1

I use the " . " as thousand separator, so when i need to put some billion number on chrome,fox or IE it works fine, but on Edge the browser turns the text on a link.

You can test this making a simple html and opening on diferent browsers.

<body>
    <label>1,999,999,999</label>
    <br>
    <label>1.100.100.000</label>
</body>

How can i avoid this on Edge?

3
  • What is your question? Commented Aug 12, 2016 at 14:44
  • on Microsoft Edge this text '1.100.100.000' turns into a link, on other browsers its just a normal text. How can i avoid this on Edge? Commented Aug 12, 2016 at 14:52
  • Please include a specific question in your next post. Commented Aug 12, 2016 at 15:15

1 Answer 1

0

Your link isn't a clickable IP, but interpreted as a phone number.

The answer https://stackoverflow.com/a/31867199/2897426 provides a way to disable automatic phone number detection, by adding the following meta tag to the <head> of your html file:

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

See the linked answer for further links.

Sign up to request clarification or add additional context in comments.

Comments

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.