Skip to content

Instantly share code, notes, and snippets.

@nzakas
Created August 2, 2011 00:38
Show Gist options
  • Star 5 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nzakas/1119343 to your computer and use it in GitHub Desktop.
Save nzakas/1119343 to your computer and use it in GitHub Desktop.
Autofocus shim
<!-- autofocus shim for older browsers that doesn't impact newer ones -->
<input type="text" name="q" id="q" autofocus>
<script>
(function(textbox){
if (textbox.autofocus !== true){
textbox.focus();
}
})(document.getElementById("q"));
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment