angular.module('changeExample', []) .controller('ExampleController', ['$scope', function($scope) { $scope.eventos = {}; $scope.eventos.change = function() { alert("evento change disparado.") }; }]);