Hey there!
I want to have a fixed button for calling in my Ionic app. So I added this code to try and see which one would successfully trigger a phone call:
<a ion-button href="tel:+123-456-789" >Call me 1</a>
<a ion-button href="tel:+123#456-789" >Call me 2</a>
<a ion-button href="tel:+123*456-789" >Call me 3</a>
<a ion-button href="tel:+123 call" >Call me 4</a>
<a ion-button href="tel:123 456 789" >Call me 5</a>
Call 1, 2 and 3 are working in the browser (it makes my mac wanting to open FaceTime), Call 4 and 5 are not working in the browser.
However, if I emulate iOS the call is not triggered by any buttons. If I serve with phonegap same thing.
I’m new to Ionic so maybe I missed a crucial step!
Cheers,
Pierre