In my rails 3 application, I have a view haml file with a form like following:
= form_for(:car, :url => cars_path) do |f|
%p
= f.label :carname
%p
= f.text_field :carname /focus here
%p
= f.label :carnr
%p
= f.text_field :carnr
%p
= f.submit
I would like the input field = f.text_field :carname is in focus when the page is loaded.
How to do it? Is it necessary to use jquery? or is there any Rails way to do the focus?