AngularJs Set Focus on Input Field
home
Run
screen_rotation
fullscreen
cloud_download
<!DOCTYPE html> <html lang="en"> <head> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.min.js"></script> <script> var myApp = angular.module("myApp", []); myApp.controller("myController", function($scope, $window) { $scope.setFocus = function() { var element = $window.document.getElementById("email"); element.focus(); }; }); </script> </head> <body> <div ng-app="myApp"> <div ng-controller="myController"> <input type="text" name="email" id="email" /> <button ng-click="setFocus()">Click To Set Focus</button> </div> </div> </body> </html>
<!DOCTYPE html> <html lang="en"> <head> <script src="http://ajax.googleapis.com/ajax/libs/angularjs/1.2.13/angular.min.js"></script> <script> var myApp = angular.module("myApp", []); myApp.controller("myController", function($scope, $window) { $scope.setFocus = function() { var element = $window.document.getElementById("email"); element.focus(); }; }); </script> </head> <body> <div ng-app="myApp"> <div ng-controller="myController"> <input type="text" name="email" id="email" /> <button ng-click="setFocus()">Click To Set Focus</button> </div> </div> </body> </html>
Copyrights@tutorialsplane.com