Skip to content

Instantly share code, notes, and snippets.

@raphaelsaunier
Created May 17, 2013 13:12
Show Gist options
  • Save raphaelsaunier/5598943 to your computer and use it in GitHub Desktop.
Save raphaelsaunier/5598943 to your computer and use it in GitHub Desktop.
Keyboard navigation for NextGEN Gallery
(function($){
$(document).on('keydown', function(e){
var code = e.keyCode || e.which;
if($.inArray(code, [37,39]) != -1)
document.location = $('.ngg-imagebrowser .'+(code==37?'back':'next')+' a').attr('href')+"#content";
});
})(jQuery);
@RadhaMadhavaDas
Copy link

This is great, how do I install and use it?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment