Try it
Javascript
Jquery
Angular
Learn Angular
Learn Javascript
Learn Bootstrap
Learn jQuery
Ng-Model-Options-2
The following example override immediate updates and Changes on the inputs within the form will update the model only when the control loses focus (blur event). See the code
<!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <title></title> <script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.4.2/angular.min.js"></script> <link rel="stylesheet" href="http://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/css/bootstrap.min.css"> </head> <body ng-app="myApp"> <div ng-controller="myController"> <div class="container"> <label> Name: <input type="text" class="form-control" name="userName" ng-model="user.name" ng-model-options="{ debounce: 1000 }" /> </label> <button class="btn btn-default" ng-click="user.name=''">Clear</button> <br /> <pre>user.name = <span ng-bind="user.name"></span></pre> </div> </div> <script> var app = angular.module("myApp", []); app.controller('myController', ['$scope', function ($scope) { }]); </script> </body> </html>
Output
×
Save This try
Title
Description
The following example override immediate updates and Changes on the inputs within the form will update the model only when the control loses focus (blur event). See the code