Skip to content

Instantly share code, notes, and snippets.

@singhmohancs
Created May 7, 2017 05:20
Show Gist options
  • Save singhmohancs/a946e4ebf4f0b51ad0bbde4484528a7e to your computer and use it in GitHub Desktop.
Save singhmohancs/a946e4ebf4f0b51ad0bbde4484528a7e to your computer and use it in GitHub Desktop.
AngularJs Focus Directive
angular.directive('autoFocus', function(){
return function(scope, element){
element[0].focus();
};
});
/*
<div>
<input type="text" auto-focus />
</div>
*/
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment