angularjs - Unable to embed hyper link in ion-checkbox -


i want embed external link in ion-checkbox. neither click event triggers nor href of anchor tag working.here code

 <ion-checkbox name="agreement" ng-model="myctrl.agreement">     <a href="www.example.com" ng-click="myctrl.onclickagreement()">      , agree terms , conditions     </a>   </ion-checkbox> 

this controller

vm.onclickagreement = function () {     window.open("www.example.com",'_system'); } 

please me out.

you can't set a href within checkbox. imagine want label next checkbox link terms , conditions. below should it!

<ion-label><a href="http://www.example.com">and agree terms , conditions</a></ion-label> <ion-checkbox name="agreement" ng-model="myctrl.agreement"></ion-checkbox> 

Comments

Popular posts from this blog

Command prompt result in label. Python 2.7 -

javascript - How do I use URL parameters to change link href on page? -

amazon web services - AWS Route53 Trying To Get Site To Resolve To www -