Archive | January, 2008

17 January 2008 ~ 7 Comments

Set focus on first field with jQuery

f you are using Prototype see this post. Setting focus on the first text field with jQuery is as simple as $(“input:text:first”).focus(); $(“input:text:visible:first”).focus(); Find more at http://docs.jquery.com/Selectors Update: If you are on Rails use auto_focusable_forms, dependency free plugin that will focus first input for you.

Continue Reading