Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Open dialer with phone number when phone number tapped on mobile

I need to show the dialer on mobile when a user taps a phone number on my website. I want to show the number they tapped on the dialer screen. Is this possible?

like image 809
Jithin P Avatar asked Feb 07 '23 07:02

Jithin P


1 Answers

To make a link open the dialer with the number you specify, use tel:xxxxxxxxxx as the href of the link, where the x's represent your phone number. For example:

<a href="tel:1234567890">(123) 456-7890</a>

An excellent article on telephone links can be found here: The Current State of Telephone Links.

like image 139
jdgregson Avatar answered Feb 10 '23 08:02

jdgregson