How do I call a phone number right from my ANGULAR JS AND IONIC application

3

I have an Ionic + Angular Js application that receives the data from the database and in those my data has the phone number as I do when clicking it calls straight from my application. Thank you for helping me

    
asked by anonymous 10.07.2016 / 11:31

1 answer

4

Simply use the tel: protocol moniker on a href element. Example:

<a href="tel:+6494461709">61709</a>
    
10.07.2016 / 12:13