Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

dynamic href call tag ionic 3 app

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

like image 201
RRB Avatar asked Aug 05 '26 23:08

RRB


1 Answers

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>
like image 148
Pardeep Jain Avatar answered Aug 07 '26 16:08

Pardeep Jain



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!