02 January 2010 ~ 1 Comment

Set focus on first field with Prototype

If you are using jQuery see this post.

To set focus on first text field with Prototype I prefer something like this

  var firstField = $$('input:text:visible').first();
  if (firstField)
    firstField.focus();

but you can also try with Form.focusFirstElement or Form.findFirstElement

One Response to “Set focus on first field with Prototype”


Leave a Reply