How do I force phones to recognize international numbers on my website?
drupal, html, meta-tags, mobile, php
Solution
Wrapping it in an `<a>` tag like this lets you use any format you'd like:
<a href="tel:+19185555555">+1 918 555 5555</a>
More info on the various formats you can take advantage of without adding any code here.
Problem
I have an international phone number outputting on a website. For example: ``` <span class="phone-number">+1 918 555 5555</span> ``` My iphone is smart enough to recognize this as a phone number and call it but it removes the "+" sign from the number. So if my friend from mexico was to click on it he would get an invalid number. Is their some meta-data I can use or any way I can force mobile phones to add that plus sign preserving the international number?