I am trying to add a href call action to my Ionic 3 app. I have the phone number stored in a binding {{item.phone}}
I need to add this to an href tag in order to open the phones native app. I am not sure how to bind it to the href tag
<ion-col col-10 href="......">{{item.phone}}</ion-col>
Please assist
Not sure what you want to do.
But you can bind to dynamic href like this
<ion-col col-10 [href]="item.phone">{{item.phone}}</ion-col>
or
<ion-col col-10 href={{item.phone}}>{{item.phone}}</ion-col>
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With