How to check if any Checkbox is checked in Angular

If you don’t want to use a watcher, you can do something like this:

<input type="checkbox" ng-init="checkStatus=false" ng-model="checkStatus" ng-click='doIfChecked(checkStatus)'>

Leave a Comment