EddyK
EddyK

Reputation: 51

click to call phone extension smartphone

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

Answers (3)

VlastV
VlastV

Reputation: 86

On Android and iPhone last version work this:

<a href="tel:+7-999-999-99-99,,1234">Click</a>

Upvotes: 0

ISHIDA
ISHIDA

Reputation: 4868

Try this- Use ext attribute

<a href="tel:+44-1234-56788;ext=88">+44-1234-56788</a>

Upvotes: 2

user2402509
user2402509

Reputation:

Try this:

<a href="tel:12345678;ext=123">

Upvotes: 0

Related Questions