1

So, I wanted to make the phone number of my site click-able so I used the below syntax:

<div class="col-md-8">
...
<h3>
<a href="tel:+18475555555">1-847-555-5555</a>
</h3>
...
</div>

When I click this phone number from my desktop's firefox browser it asks me whether I have to open it with Skype.

However, when I click on it from my mobile (tried both Android Galaxy S3 and an iPhone 5), nothing happens. How do I trouble shoot this?

I am using http://www.themenesia.com/themeforest/truehost/ theme, if that helps.

user2864740
  • 60,010
  • 15
  • 145
  • 220
Bhavani Kannan
  • 1,269
  • 10
  • 29
  • 46

1 Answers1

2

Drop the + in front of the number.

<a href="tel:18475555555">1-847-555-5555</a>

It's not required and should not affect how a desktop browser handles it.

EDIT:

I now found that you need to either drop the country code (in this case the 1 for US), and/or separate the actual number with dashes:

<a href="tel:1-847-555-5555">1-847-555-5555</a>
<a href="tel:8475555555">1-847-555-5555</a>
Ramsay Smith
  • 1,098
  • 13
  • 30