I am trying to get the checked boxes in my App using Angular JS
I have something like
<div class="checkbox" ng-repeat="item in items">
<input type="checkbox" />{{item.name}}
</div>
How do I get the checked boxes value using angular?
app.controller('test', function(){
// not sure what do to here...
})
Thanks for the help