I need to build a web page for mobile device. There's only one thing I still haven't figured out: how can I trigger a phone call through the clic of an image or text.

Is there a special url I could enter like the mailto: tag for emails ?

Device specific solution are envisagable.

I know Iphone automatically recognise phone number and create a link for this but it would be great if this could be done for images too... and also for most mobile devices.

Thanks !

Fred

link|improve this question

feedback

4 Answers

up vote 13 down vote accepted

Most modern devices support the tel: scheme. So use <a href="tel:555-555-5555">555-555-5555</a> and you should be good to go.

link|improve this answer
feedback

The proper URL scheme is tel:[number] so you would do

<a href="tel:5551234567"><img src="callme.jpg" /></a>
link|improve this answer
feedback

The previous answers are inadequate. The best tutorial I have found is here:

http://pointbeing.net/weblog/2010/01/making-phone-calls-and-sending-sms-with-html.html

link|improve this answer
feedback

Maybe this works?

<img src="boat.gif" alt="(555) 67893" />
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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