Veske
Veske

Reputation: 557

Making a form selected by default

So I have this login page in my rails app. I want the first form which is for the username to be allready selected by default, when I enter the page.

How can I achieve this?

Upvotes: 0

Views: 42

Answers (1)

steakchaser
steakchaser

Reputation: 5249

Pass the autofocus: true option to the form helper:

= f.text_field :username, autofocus: true

Upvotes: 1

Related Questions