0

On the phone number click I want to trigger the call thing in my site.

This is how I am showing the number.

<li><i class="fa fa-phone pr-5 pl-10"></i>+12 123 123 123</li>

How do I add the tell thing here.

Please help.

Suraj
  • 2,423
  • 12
  • 39
  • 75

2 Answers2

1

I think you should make the number a link and in the href attribute put "tel:younumberhere"

As per http://thenewcode.com/536/Adding-Phone-Numbers-To-Web-Pages-With-HTML5-and-Microdata

karina
  • 805
  • 5
  • 10
1

Create a link like this:

<li><i class="fa fa-phone pr-5 pl-10"></i><a href="tel:+12123123123">+12 123 123 123</a></li>

On Android it will bring up the Phone app and pre-enter the digits for 2125551212 without auto dialing.

K Neeraj Lal
  • 6,768
  • 3
  • 24
  • 33