Skip to content

Instantly share code, notes, and snippets.

@hectorperez
Last active August 29, 2015 14:02
Show Gist options
  • Save hectorperez/78889bb941012f1bd181 to your computer and use it in GitHub Desktop.
Save hectorperez/78889bb941012f1bd181 to your computer and use it in GitHub Desktop.
Set the focus to the first text input or textarea
$(document).ready(function() {
var first_input = $('input[type=text]:visible:enabled:first, textarea:visible:enabled:first')[0];
if(first_input != undefined){ first_input.focus(); }
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment