I am trying to see if this javascript code for an image gallery as the option to click on the image to view next. Currently it is only set to go to the next image by clicking on the next/prev buttons. Any thoughts?
Asked
Active
Viewed 443 times
1 Answers
0
I see your page has the jQuery library included already, so it should be an easy task.
$('body').on('click', '#lbImage', function() { //when display image is clicked
if ($('#lbNext2_Off').is(':hidden')) //check if it isn't the last image
myLytebox.changeContent(myLytebox.activeSlide + 1); //move to next image
});

Fabrício Matté
- 69,329
- 26
- 129
- 166