Reputation: 2241
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
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
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