Created
July 2, 2012 20:36
-
-
Save katdowns/3035551 to your computer and use it in GitHub Desktop.
Next/Back on Keypress
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
// left/right key press | |
$(document).keydown(function(e) { | |
if (e.which == 37) { // left key | |
$('#slideshow').cycle('prev'); | |
} else if (e.which == 39) { // right key | |
$('#slideshow').cycle('next'); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment