Skip to content

Instantly share code, notes, and snippets.

@ambar
Created April 15, 2012 09:50
Show Gist options
  • Save ambar/2391598 to your computer and use it in GitHub Desktop.
Save ambar/2391598 to your computer and use it in GitHub Desktop.
html 5 autofocus pollfill
var support = function(attr) { return attr in document.createElement('input') }
if ( !support('autofocus') ) {
$('input[autofocus]', $form).focus()
}
$('input:not(:hidden,:disabled):first', $form).focus()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment