So, basically right now I can create a button with a tag A, where there is href = "tel: XXXXXXXXXXX", and if the user clicks / clicks on that he will bring them to his phone application. However, I'm trying to do this programmatically on gesture recognition (swipe the screen). The gesture works, I tried window.location = "tel:XXXXXXXXXX"; window.open('tel:XXXXXXXXXX', '_top'); window.location = "tel:XXXXXXXXXX"; window.open('tel:XXXXXXXXXX', '_top');
not one of them has yet worked. Any ideas? Ionic / Angular 1
Note ** This seems to only happen on iOS, Android seems to be working fine.
source share