Skip to content

Instantly share code, notes, and snippets.

@jugyo
Created December 3, 2010 14:31
Show Gist options
  • Select an option

  • Save jugyo/727021 to your computer and use it in GitHub Desktop.

Select an option

Save jugyo/727021 to your computer and use it in GitHub Desktop.
Ctrl+S => $('#query').focus()
$(document).bind('keyup', function(event) {
if (event.which == 83 && !$(event.target).is(':input')) {
$('#query').focus();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment