Auto focus
Attribute directive to specify focus on form/input load. Will focus on either the input that has the attribute, or the form's first text input if the attribute directive is at the form/ng-form level.
- HTML
<div> <form inv-auto-focus> <input type="checkbox"> <input type="text" placeholder="I should have focus"> <input type="text"> </form> </div>