Last active
March 28, 2016 14:44
-
-
Save zoblaros/f892760962a608ef8a9e to your computer and use it in GitHub Desktop.
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
$(document).keydown( function(event) { | |
if (event.which === 39) { | |
$('.next').each(function(){ | |
var href = $(this).attr('href'); | |
document.location.href=href; | |
}); | |
} | |
}); | |
$(document).keydown( function(event) { | |
if (event.which === 37) { | |
$('.back').each(function(){ | |
var href = $(this).attr('href'); | |
document.location.href=href; | |
}); | |
} | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment