I want to mark up a phone number as callable link in an HTML document. I have read the microformats approach, and I know, that the tel: scheme would be standard, but is quite literally nowhere implemented.

Skype defines, as far as I know, skype: and callto:, the latter having gained some popularity. I assume, that other companies have either other schemes or jump on the callto: train.

What would be a best practice to mark-up a phone number, so that as many people as possible with VoIP software can just click on a link to get a call?

Bonus question: Does anyone know about complications with emergency numbers such as 911 in US or 110 in Germany?

Cheers,

Update: Microsoft NetMeeting takes callto: schemes under WinXP. This question suggests, that Microsoft Office Communicator will handle tel: schemes but not callto: ones. Great, Redmond!

Update 2: Two and a half years later now. It seems to boil down to what you want to do with the number. In mobile context, tel: is the way to go. Targeting desktops it's up to you, if you think your users are more Skype people (callto:) or will more likely have something like Google Voice (tel:) installed. My personal opinion is, that in doubt use tel: (in line with @Sidnicious' answer).

link|improve this question

Any news about the bonus question? I was wondering about special numbers such as the (usually?) toll-free 800- in Italy. – Lohoris Jul 20 '11 at 8:17
1  
Unfortunately not. It seems to boil down to what your provider (VoiP, cellphone comp or whatever) does. This may as well be charging for 800 numbers. – Boldewyn Jul 20 '11 at 9:21
I'm using Google Voice in Chrome and it does not recognize tel: URIs. I'm stil sticking with callto: and a display of the phone number on the theory that the mobile phone browsers should auto-detect the number anyway. – Old Pro Apr 18 at 2:17
feedback

7 Answers

up vote 44 down vote accepted

The tel: scheme was used in the late 1990s and documented in early 2000 with RFC 2806 (which was obsoleted by the more-thorough RFC 3966 in 2004) and continues to be improved. Supporting tel: on the iPhone was not an arbitrary decision.

callto:, while supported by Skype, is not a standard and should be avoided unless specifically targeting Skype users.

Me? I'd just start including properly-formed tel: URIs on your pages (without sniffing the user agent) and wait for the rest of the world's phones to catch up :) .

link|improve this answer
Thanks for the detailed answer! Since I asked the question, I was tempted to follow this approach, too. Use the standard and tell complaining people, that they use the bad app/tool. Although it gets hard, if this one is your client, I think, you're right. If nonetheless I have to consider Skype users, I'll go with my JavaScript solution the other way round. – Boldewyn Sep 24 '09 at 14:16
feedback

As one would expect, WebKit's support of tel: extends to the Android mobile browser as well - FYI

link|improve this answer
1  
Would have been better as a comment, but fine to know anyway. – Lohoris Jul 20 '11 at 16:37
feedback

I keep this answer for "historic" purpose but don't recommend it anymore. See @Sidnicious' answer above and my Update 2.

Since it looks like a draw between callto and tel guys, I want to throw in a possible solution in the hope, that your comments will bring me back on the way of light ;-)

Using callto:, since most desktop clients will handle it:

<a href="callto:0123456789">call me</a>

Then, if the client is an iPhone, replace the links:

window.onload = function () {
  if (navigator.userAgent.match (/iPhone/i)) {
    var a = document.getElementsByTagName ("a");
    for (var i = 0; i < a.length; i++) {
      if (a[i].getAttribute ('href').search (/callto:/i) === 0) {
        a[i].setAttribute ('href', a[i].getAttribute ('href').replace (/^callto:/, "tel:"));
      }
    }
  }
};

Any objections against this solution? Should I preferably start from tel:?

link|improve this answer
It could be that the iPhone also supports the callto scheme, but that Apple prefers tel, so that's the one mentioned in the documentation. – Jan Aagaard Jul 22 '09 at 10:49
See my answer. callto: is a proprietary URI scheme, so I wouldn't start there. – Sidnicious Sep 23 '09 at 16:48
feedback

Mobile Safari (iPhone & iPod Touch) use the tel: scheme.

How do I dial a phone number from a webpage on iPhone?

link|improve this answer
1  
So if the main targetted users are iPhone or iPod Tough (and maybe other mobile devices, I don't know... ) , you should use tel: If the main users are normal web clients, (IE, Firefox etc..) using skype or some other VoIP software, I think callto: would be best. – awe Jul 22 '09 at 9:35
feedback

Although Apple recommends tel: in their docs for Mobile Safari, currently (iOS 4.3) it accepts callto: just the same. So I recommend using callto: on a generic web site as it works with both Skype and iPhone and I expect it will work on Android phones, too.

link|improve this answer
1  
the stock browser in the latest open-source build of Android "Ice Cream Sandwich" still appears to support only tel:; clicking on a callto: link results in "Web page not available" – rymo Jan 17 at 21:59
feedback

I would stick to the Skype scheme, as Skype is quite ubiquitous by now

As for your bonus question, you cannot call 911 or any emergency services from VoIP. Some companies (like Vonage in the US) provide their own 911 service, but even they recommend you have a land line or mobile at hand for real emergencies.

link|improve this answer
feedback

Since callto: is per default supported by skype (set up in Skype settings), and others do also support it, I would recommend using callto: rather than skype: .

link|improve this answer
1  
Here I agree. But all together it seems to boil down to tel: vs callto:, and that's not an easy one. – Boldewyn Sep 24 '09 at 14:18
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.