Skip to content

Instantly share code, notes, and snippets.

@narrowdesign
Created March 14, 2012 16:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save narrowdesign/2037621 to your computer and use it in GitHub Desktop.
Save narrowdesign/2037621 to your computer and use it in GitHub Desktop.
Arrow key navigation
// ADD THIS FOR ARROW KEY NAVIGATION on the home ticks and the photos on sub pages for maximum power!
$(document).bind("keydown", function (e) {
switch (e.keyCode) {
case 37: // LEFT ARROW
// trigger prev tick
break;
case 39: // RIGHT ARROW
// trigger next tick
break;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment