Hi,
I have a checkbox and associated text inside an anchor tag as follows:
<a ng-click="change()">
<input type="checkbox" ng-checked="content.active" ng-model="content.active">
<div> click me! </div>
</a>
The value of content.active is getting binded properly, but the checkbox is always ticked (changes after the end of the change()).
Also, it works if i click on the text but not on the checkbox.
Help, somebody?
Thanks!