Skip to content

Instantly share code, notes, and snippets.

@kd7lxl
Last active August 29, 2015 13:56
Show Gist options
  • Save kd7lxl/8983292 to your computer and use it in GitHub Desktop.
Save kd7lxl/8983292 to your computer and use it in GitHub Desktop.
Add arrow key nav to http://pics.osburn.com/
// ==UserScript==
// @name osburn pics left/right keys
// @namespace http://tomh.us/
// @version 0.1
// @description Enables right/left arrow keys for gallery navigation
// @match http://pics.osburn.com/photo/*
// @copyright 2014+, Tom Hayward
// @require http://ajax.googleapis.com/ajax/libs/jquery/1.2.6/jquery.js
// ==/UserScript==
$(document).keyup(function(event) {
if (event.which == 39) { // right
window.location.href = $(".nav_bar_mid a")[1] || $(".nav_bar_mid a")[0];
}
if (event.which == 37) { // left
window.location.href = $(".nav_bar_mid a")[0].href;
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment