Skip to content

Instantly share code, notes, and snippets.

@AaronRustad
Created October 7, 2010 14:09
Show Gist options
  • Save AaronRustad/615158 to your computer and use it in GitHub Desktop.
Save AaronRustad/615158 to your computer and use it in GitHub Desktop.
<%= javascript_tag do %>
function setFocus(id) {
$('#' + id).focus();
};
<% end %>
<%= form_for @user %>
...
<%= f.text_field :username, :class => 'txt_input', :onClick => "setFocus('user_username');" %>
...
<% end %>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment