naresh kumar
naresh kumar

Reputation: 2241

Making phone call from mobile web browser

I am just thinking, is there any possibility to make call to the mobile from a mobile webpage link (from mobile bowser).

<p>Making call from webpage.</p>
<a href='#' id='contact'>contact: 97080 18380</a>

Upvotes: 1

Views: 2218

Answers (2)

Diego Agull&#243;
Diego Agull&#243;

Reputation: 9586

You could make use of the tel protocol:

<p>Making call from webpage.</p>
<a href='tel:9708018380' id='contact'>contact: 97080 18380</a>

Plus, check mobilexweb for some nice tips about that matter.

Upvotes: 6

madflow
madflow

Reputation: 8520

An internet search told me this:

<p>Making call from webpage.</p>
<a href='tel: 97080 18380' id='contact'>contact: 97080 18380</a>

http://demosthenes.info/blog/536/Adding-Phone-Numbers-To-Web-Pages-With-HTML5-&-Microdata

Upvotes: 3

Related Questions