Skip to content

Instantly share code, notes, and snippets.

@maxbeatty
Created March 8, 2012 18:33
Show Gist options
  • Save maxbeatty/2002553 to your computer and use it in GitHub Desktop.
Save maxbeatty/2002553 to your computer and use it in GitHub Desktop.
Focus first input, respect browser back with keyboard
$('input:visible:first').focus().keydown(function(e) {
if (e.keyCode === 8 && !this.value) {
history.back();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment