Home Forums Theme support Strong thema – gallery keyboard navigation Reply To: Strong thema – gallery keyboard navigation

Hi,

it seems the jQuery plugin doesnt support the keyboard navigation, but we’ve made a workaround. Please go to WP Admin -> Appearance -> Theme Options -> Extra Javascript content and add this code:

jQuery(document).keyup(function(e) { 
        if (e.keyCode == 27) { // esc keycode
       	jQuery('a.tos-close').trigger('click');
        }
        if (e.keyCode == 37) { // prev keycode
       	jQuery('a.tos-prev').trigger('click');
        }
        if (e.keyCode == 39) { // next keycode
       	jQuery('a.tos-next').trigger('click');
        }
    });

We’ve tested it and its working.