vote up 1 vote down star

Hi SO,

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

flag

3 Answers

vote up 1 vote down check

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

link|flag
vote up 0 vote down

Maybe this works?

<img src="boat.gif" alt="(555) 67893" />
link|flag
vote up 1 vote down

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

<a href="tel:5551234567"><img src="callme.jpg" /></a>
link|flag

Your Answer

Get an OpenID
or

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