Skip to content

Instantly share code, notes, and snippets.

@zoblaros
Last active March 28, 2016 14:44
Show Gist options
  • Save zoblaros/f892760962a608ef8a9e to your computer and use it in GitHub Desktop.
Save zoblaros/f892760962a608ef8a9e to your computer and use it in GitHub Desktop.
$(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