Skip to content

Instantly share code, notes, and snippets.

@sofish
Created October 29, 2014 11:37
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save sofish/102ef5404d8424da334e to your computer and use it in GitHub Desktop.
Save sofish/102ef5404d8424da334e to your computer and use it in GitHub Desktop.
nav for uedetail
document.querySelector && window.addEventListener('keyup', function (e) {
var url = e.which === 39 ? document.querySelector('a[rel=prev]').href :
e.which === 37 ? document.querySelector('a[rel=next]').href : '';
if (url) window.location = url;
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment