Jan
17
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.