I working with ionic pop-up where inside the popup content, I want a clickable link. The problem is that the link that I created is not working. Can't click them. My code is as follows:
var mypopup = $ionicPopup.show({
template: '<a href="http://google.com">Google</a>',
buttons: [{
text: 'Ok'
}]
})
Is there any way I can enable a user to click that link and go to Google?
Many thanks!