1

In Html I'm looking for a kind of tag or attribute a little bit like :

href="mailto:foo@bar.com"

but

href="phoneto:+11XXXXXXXX"

does it exist?

Christophe Debove
  • 6,088
  • 20
  • 73
  • 124

2 Answers2

3

This is for the iPhone
The html/url format is:

href="tel:########"

in Objective-C code: [[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:8005551212"]];

Here is a link to the relevant Apple Documentation on URL Schemes.

Walter
  • 5,867
  • 2
  • 30
  • 43
1

The format for Android is href="tel:xxxxxxxx"

see previous stackoverflow answer at : On Android : making a phonecall using a browser application

Community
  • 1
  • 1
Frederic Bazin
  • 1,530
  • 12
  • 27