Skip to content

Instantly share code, notes, and snippets.

@shunchu
Created February 25, 2012 01:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shunchu/1905078 to your computer and use it in GitHub Desktop.
Save shunchu/1905078 to your computer and use it in GitHub Desktop.
Auto focus first form field with a set of matching criteria
// focus first form field element matching these criteria
$(':input:visible:enabled:not(.no-focus,
select, input[readonly=readonly],
input[type=checkbox],
input[type=radio],
input[type=submit]):first').focus();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment