Skip to content

Instantly share code, notes, and snippets.

@zeshanshani
Created March 22, 2022 14:32
Show Gist options
  • Save zeshanshani/fcb77251d43f3969b1d5b9e30239b153 to your computer and use it in GitHub Desktop.
Save zeshanshani/fcb77251d43f3969b1d5b9e30239b153 to your computer and use it in GitHub Desktop.
jQuery(document).ready(function($) {
$(document).on('keyup', function(e) {
if ( $('.lightbox').is(':visible') ) {
if ( e.which === 37 ) {
$('.gallery_prev').trigger('click');
} else if ( e.which === 39 ) {
$('.gallery_next').trigger('click');
}
}
})
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment