Skip to content

Instantly share code, notes, and snippets.

@callblueday
Last active December 21, 2015 17:18
Show Gist options
  • Save callblueday/6339256 to your computer and use it in GitHub Desktop.
Save callblueday/6339256 to your computer and use it in GitHub Desktop.
function setKeyboardEvents() {
$(document).keydown(function(event) {
if(event.keyCode == 37){
doSomething();
}
else if (event.keyCode == 39){
doSomething();
}
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment