What I'm trying to do is add the ng-checked
directive on a <a>
tag with JQuery because I use Bootstrap Material Design and it makes me not work said directive mentioned, since this CheckBox is redefined by some Script. When trying to do something like this:
<div class="switch">
<label>
<input type="checkbox" ng-checked="myRadio"> Active
</label>
</div>
ng-checked="myRadio"
appears as is in the html. Any suggestions?