3

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

Pardeep Jain
  • 84,110
  • 37
  • 165
  • 215
skydev
  • 1,867
  • 9
  • 37
  • 71

1 Answers1

1

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>
Pardeep Jain
  • 84,110
  • 37
  • 165
  • 215