Skip to content

Instantly share code, notes, and snippets.

@bobobo1618
Created November 18, 2011 13:09
Show Gist options
  • Save bobobo1618/1376421 to your computer and use it in GitHub Desktop.
Save bobobo1618/1376421 to your computer and use it in GitHub Desktop.
Next page on right arrowkey
<script>
$(document).keydown(function(e){
if (e.keyCode == 39) {
window.location = "<insert URL of next page here>";
}
});
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment