Skip to content

Instantly share code, notes, and snippets.

@AaronRustad
Created October 7, 2010 14:10
Show Gist options
  • Save AaronRustad/615159 to your computer and use it in GitHub Desktop.
Save AaronRustad/615159 to your computer and use it in GitHub Desktop.
## NEW USER PAGE
<%= form_for @user %>
...
<%= f.text_field :username, :class => 'txt_input', :focus => true %>
...
<% end %>
## APPLICATION.JS
$(document).ready(function() {
$('input[focus=true]').focus();
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment