UNPKG

fruitstand

Version:
22 lines 633 B
<!doctype html> <html ng-app="myApp"> <head> <title>AngularJS Focus Event Directives</title> </head> <body> <div ng-controller="myController"> <h2>Focus Event Directives</h2> Input 1:<br> <input type="text" ng-blur="focusLost($event, 'input1')" ng-focus="focusGained('input1')"><br> Input 2:<br> <input type="text" ng-blur="focusLost($event, 'input2')" ng-focus="focusGained('input2')"><hr> Input Data: {{inputData|json}}<br/> </div> <script src="http://code.angularjs.org/1.3.0/angular.min.js"></script> <script src="js/directive_focus_events.js"></script> </body> </html>