I have a problem with setting the focus to the textbox for a login page in Ruby on Rails. I want to give focus to a user text field. Is there any way to give focus property to text_field?
+3
A:
In HTML5 you can do something like this:
<%= f.text_field :my_field, :autofocus => true %>
The only way to achieve this without using HTML 5 is with JavaScript if I'm not mistaken. This has nothing to do with Rails, it's an HTML attribute.
Cimm
2010-07-15 12:11:06
hey thanks for the nice answer
Arpit Vaishnav
2010-07-15 12:16:46