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
Post a Comment