Skip welcome & menu and move to editor
Welcome to JS Bin
Load cached copy from
 
<!doctype html>
<html lang="en">
<head>
  <meta charset="UTF-8">
  <title>Example - example-checkbox-input-directive-production</title>
  <script src="//ajax.googleapis.com/ajax/libs/angularjs/1.3.8/angular.min.js"></script>
</head>
<body ng-app="checkboxExample">
  <script>
  angular.module('checkboxExample', [])
    .controller('ExampleController', ['$scope', function($scope) {
      $scope.value1 = false;
      $scope.checked = function() {
        alert('test');
      };
    }]);
</script>
<form name="myForm" ng-controller="ExampleController">
<input type="checkbox" id="all" ng-model="value1"><label for="all">выделить все</label>
  <input type="checkbox" class="block" ng-checked="value1" id="test1" ng-click="checked()"><label for="test1">test1</label>
  <input type="checkbox" class="block" ng-checked="value1" id="test2"><label for="test2">test2</label>
  <input type="checkbox" class="block" ng-checked="value1" id="test3"><label for="test3">test3</label>
  <input type="checkbox" class="block" ng-checked="value1" id="test4"><label for="test4">test4</label>
 </form>
</body>
</html>
Output

You can jump to the latest bin by adding /latest to your URL

Dismiss x
public
Bin info
anonymouspro
0viewers