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?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
This is for the iPhone
The html/url format is:
in Objective-C code:
[[UIApplication sharedApplication] openURL:[NSURL URLWithString:@"tel:8005551212"]];Here is a link to the relevant Apple Documentation on URL Schemes.