Skip to content

Instantly share code, notes, and snippets.

@mlynch
Last active August 24, 2022 15:03
Show Gist options
  • Star 84 You must be signed in to star a gist
  • Fork 9 You must be signed in to fork a gist
  • Save mlynch/dd407b93ed288d499778 to your computer and use it in GitHub Desktop.
Save mlynch/dd407b93ed288d499778 to your computer and use it in GitHub Desktop.
AngularJS Autofocus directive
/**
* the HTML5 autofocus property can be finicky when it comes to dynamically loaded
* templates and such with AngularJS. Use this simple directive to
* tame this beast once and for all.
*
* Usage:
* <input type="text" autofocus>
*
* License: MIT
*/
angular.module('utils.autofocus', [])
.directive('autofocus', ['$timeout', function($timeout) {
return {
restrict: 'A',
link : function($scope, $element) {
$timeout(function() {
$element[0].focus();
});
}
}
}]);
@jolugama
Copy link

Thanks!.

@dustinsmith1024
Copy link

👍

@zhangnanMoo
Copy link

what if $timeout have not controll time it will be?

@kirkstrobeck
Copy link

https://gist.github.com/kirkstrobeck/599664399dbc23968741

  • Added use strict in self executing function
  • Enforced 80 char line limit
  • Adheres to webmaker jsbeautify
  • Tabs converted to spaces
  • Added missing semi-colon
  • Added global for airbnb jshint
  • Enforced consistent spacing

@Salynne
Copy link

Salynne commented Feb 9, 2015

Any chance you could explicitly license this under an open source license or mark it as public domain?

Thanks

@natarajanknr
Copy link

Thanks its working fine..

@prashantpalikhe
Copy link

Since the callback is purely DOM related, there is no need to trigger digest cycle after the input is focussed. So, passing third argument (invokeApply) to $timeout() as false would be a better approach imo.

@magm84
Copy link

magm84 commented Jul 1, 2015

thanks

@mudroljub
Copy link

Very clean and cool 👍

@jonkri
Copy link

jonkri commented Jul 30, 2015

The lack of an open source license prohibits me from using this. Licensing this under the MIT license (the same license as AngularJS is licensed under) would be great.

@mlynch
Copy link
Author

mlynch commented Dec 8, 2015

It's MIT Licensed

@BenjaminConant
Copy link

Hey ... just found this after writing my own solution ...

angular.module('finnApp')
  .directive('angularAutoFocus', function () {
    return {
      restrict: 'A',
      link: function (scope, element, attrs) {
        element.focus();
      }
    };
  });

any chance you can explain why you are using element[0] ... instead of just element. Also reasoning for the $timeout .. would prefer to not have it if it is not necessary.

for context I have only tired this on inputs while using uirouter and running into wonkyness with html5 autofocus

@blaise-io
Copy link

@BenjaminConant: .focus() (without [0]) only works when you have jQuery loaded. The $timeout is required because at execution time, the element may not be present in the DOM yet.

@eyupaltindal
Copy link

thanks 👍

@BenjaminConant
Copy link

@blaise-io thanks much!

@ortichon
Copy link

Great, thank you

@aarongray
Copy link

This directive was working great with an earlier version of Angular 1.4, but I recently upgraded to Angular 1.4.10, and started getting this error: Uncaught TypeError: $exceptionHandler is not a function. The solution was to inject $exceptionHandler in addition to $timeout into the directive. I believe this is because $timeout delegates any exceptions that occur within the function to the $exceptionHandler.

See: https://docs.angularjs.org/api/ng/service/$timeout

@MarcMouallem
Copy link

Like a boss!

@iuprade
Copy link

iuprade commented Sep 6, 2016

awesome

@DrakeXiang
Copy link

The $timeout to the rescue!!!

@sokhomhuy
Copy link

awesome

@maxthevoice
Copy link

Thanks!

@joryschmidt
Copy link

wonderful, thank you sir

@jeponkz
Copy link

jeponkz commented Sep 18, 2020

how to add autofocus conditionally? so if expression is true add "autofocus" attribute.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment