Skip to content

Instantly share code, notes, and snippets.

@matiskay
Created May 22, 2013 22:46
Show Gist options
  • Save matiskay/5631554 to your computer and use it in GitHub Desktop.
Save matiskay/5631554 to your computer and use it in GitHub Desktop.
$('body').keydown(function(e) {
if (e.keyCode == 37) { // left
App.prev_handler.click();
}
else if(e.keyCode == 39) { // right
App.next_handler.click();
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment