Created
November 1, 2011 00:01
-
-
Save IceCreamYou/1329451 to your computer and use it in GitHub Desktop.
Penn Course Review Beta - Keyboard Shortcut to Search
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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