murday1983
murday1983

Reputation: 4016

Angular 5 Autofocus

I have an Angular 5 project and I want to set an autofocus to any item on the page when it loads.

Closest I have got is in the following plunka

https://plnkr.co/edit/OfdnZzGx0KgbCMh3IlE4?p=preview

The only issue is that I'm not using Directives I'm using Components, Models and 'Services'

I want to try and stay away from Directives if possible but I cant get my pluka to work using these.

Any suggestions

Upvotes: 2

Views: 14270

Answers (1)

Pardeep Jain
Pardeep Jain

Reputation: 86740

Why not to simply use autofocus attribute on input filed like this -

<input type="text" name="firstName" autofocus>

working example

Upvotes: 4

Related Questions