keyboard-image-navigation.js 399 B

12345678910111213
  1. jQuery( document ).ready(function($) {
  2. $( document ).keydown(function(e) {
  3. var url = false;
  4. if (e.which == 37) { // Left arrow key code
  5. url = $( '.previous-image a' ).attr( 'href' );
  6. } else if (e.which == 39) { // Right arrow key code
  7. url = $( '.entry-attachment a' ).attr( 'href' );
  8. }
  9. if (url && ( ! $( 'textarea, input' ).is( ':focus' ))) {
  10. window.location = url;
  11. }
  12. });
  13. });