Call function from scope in change event
Description
The following code shows how to Call function from scope in change event.
Example
<!DOCTYPE html>
<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.js"></script>
</head><!--from ww w . j a va2s .c om-->
<body ng-app="myApp">
<div ng-controller="MyCtrl">
<textarea ng-change="changeFunction()" ng-model="myModel"></textarea>
<div>{{log}}</div>
</div>
<script type='text/javascript'>
var myApp = angular.module('myApp',[]);
function MyCtrl($scope) {
$scope.log=[];
$scope.changeFunction=function(){
$scope.log.push('Called');
}
}
</script>
</body>
</html>