Is there a way to dynamically set the value of the href tag based on input from a user? Specifically, I want the href tag to call "skype:+ (value from the input)" when clicked.
<ion-content padding>
<ion-col>
<ion-label color="primary">Enter The No.</ion-label>
<ion-input placeholder="Text Input"></ion-input>
<a href="skype:+jelordrey?call">
<button ion-button color="secondary">test</button>
</a>
<!-- <a href="skype:+jelordrey?call">
<button >
Click to open Skype and dial the no:+1234567890
</button>
</a> -->
</ion-col>
</ion-content>
export class SkypecallPage {
constructor(public navCtrl: NavController, public navParams: NavParams) {
}
ionViewDidLoad() {
console.log('ionViewDidLoad SkypecallPage');
}
}