• After 15+ years, we've made a big change: Android Forums is now Early Bird Club. Learn more here.

Apps How to dial extension number from web page in android 4.1 and above

Hi,

I need to dial the number with extension in android phones.

I used anchor tag to dial the number from web page, But when ever I tap on dial its showing dial pad without extension number, while opening dial pad extension number is discarding please help how to dial extension number in all android phone Android 2.3,3.0,4.0,4.1,4.4,5.0.

I tried <a href="tel:999999999,123"> Dial </a> its working 2.3,3.0,4.0 versions

4.1 and above discarding the extension number... its displaying the number only...

<a href="tel:999999999p123"> Dial </a> its displaying 9999999997123 in dial pad, conveting p as 7 and displaying,

So please guide how to dial with extension from webpage in android phones...
 
Some quick reading on the tel: URI makes it sound like it's pretty hard to get 100% coverage as each mobile device seems to interpret the URIs slightly differently.

Have you tried using the postd=, ext=, and/or isub= attributes?

Code:
<a href="tel:999999999,123;postd=123"> Dial </a>
or
Code:
<a href="tel:999999999,123;ext=123"> Dial </a>
or
Code:
<a href="tel:999999999,123;isub=123"> Dial </a>

Relevant RFC: http://tools.ietf.org/html/rfc2806#section-2.2
 
Back
Top Bottom