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

javascript - Confirm a form & display message if form is valid with JQuery -

Retrieving ETA (estimated time of arrival) with Google Distance Matrix API and public transit as transport mode -

ionic framework - Meteor - Error: Failed to execute 'insertBefore' on 'Node' -