Skip to content

Instantly share code, notes, and snippets.

@GaryUnbounce
Created February 18, 2014 22:31
Show Gist options
  • Select an option

  • Save GaryUnbounce/9081825 to your computer and use it in GitHub Desktop.

Select an option

Save GaryUnbounce/9081825 to your computer and use it in GitHub Desktop.
Automatically focus the first field of a form
<script type="text/javascript">
jQuery(function() {
jQuery('form input:text:visible:first').focus();
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment