Skip to content

Instantly share code, notes, and snippets.

@IceCreamYou
Created November 1, 2011 00:01
Show Gist options
  • Save IceCreamYou/1329451 to your computer and use it in GitHub Desktop.
Save IceCreamYou/1329451 to your computer and use it in GitHub Desktop.
Penn Course Review Beta - Keyboard Shortcut to Search
// Basically copied directly from http://www.catswhocode.com/blog/using-keyboard-shortcuts-in-javascript
var isCtrl = false;
$(document).keyup(function (e) {
if (e.which == 17)
isCtrl = false;
}).keydown(function (e) {
if (e.which == 17)
isCtrl = true;
if (e.which == 83 && isCtrl == true) {
$('#searchbox').focus().select();
return false;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment