I suggest using ngBlurAngularJS in the field.
This directive became available from version 1.2 of Angular.
<div ng-controller="MyCtrl">
<input type="text" ng-model="blurModel" ng-blur="onBlur($event)"/>
</div>
function MyCtrl($scope) {
$scope.onBlur = function($event) {
console.log($event);
}
}
I have added JSFiddle for you.
If you want to use the library UI.Utils, you must enter the module 'ui.utils'into the project.
var app = angular.module('plunker', ['ui.utils']);
app.controller('MainCtrl', function($scope) {
$scope.onBlur = function($event) {
console.log($event);
};
});
<body ng-controller="MainCtrl">
<input type="text" placeholder="ui-utils" ui-event="{blur:'onBlur($event)'}"/>
</body>
This is Plunker using UI.Utils.