Reputation: 51
Looking to call a phone number and extension from clickable link in a smartphone, example (212)-555-1212 Ext.456 and then an extension number
I have tried
<a href="tel:(212)-555-1212,456">Call me</a>
and also
<a href="tel:(212)-555-1212p456">Call me</a>
Both resulted in phone (Galaxy Note 4) calling (212)-555-12127456
I could not find how to add the extension number after a pause.
Upvotes: 3
Views: 2765
Reputation: 86
On Android and iPhone last version work this:
<a href="tel:+7-999-999-99-99,,1234">Click</a>
Upvotes: 0
Reputation: 4868
Try this- Use ext attribute
<a href="tel:+44-1234-56788;ext=88">+44-1234-56788</a>
Upvotes: 2