angularjs - How to call from app in Ionic using href? -


i have read many post seems doing wrong.

<a href="tel:1234543" class="item item-icon-left" id="number">     <i class="icon ion-earth"></i> call </a> 

config file

 <access origin="*"/>   <access origin="tel:*" launch-external="yes" />   <allow-intent href="tel:*" /> 

when run on device button nothing? pointers?

just modify code :

<a href="tel:+1-1800-555-5555" id="number" class="item item-icon-left">    <i class="icon ion-earth"></i> call </a> 

config.xml

<access origin="tel:*" launch-external="yes"/> 

hope works :)


Comments

Popular posts from this blog

sequelize.js - Sequelize group by with association includes id -

android - Robolectric "INTERNET permission is required" -

java - Android raising EPERM (Operation not permitted) when attempting to send UDP packet after network connection -