Soarabh
Soarabh

Reputation: 2950

To initiate a phone call from iphone websites

To make a phone call via HTML on an iPhone I have create an a tag with an href formatted as: <a href='tel:555-555-5555'>555-555-5555</a>.

But My problem is, Its not working its opening in new tab just showing like its stuck.Even i tried <a href="tel://555-555-5555">555-555-5555</a> but non of them is working for me. Is anyone face these type of problem?

Upvotes: 0

Views: 584

Answers (1)

rckoenes
rckoenes

Reputation: 69459

Well you first attempt seem to be the correct one, as you can see in de Apple URL scheme documentation.

There example:

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

It might be the quotes, you use ' while normally you would use ".

Upvotes: 3

Related Questions