Closed fietstouring closed 12 years ago
I'd like some help here too. Anyone?
You could bind to the click event on slides and use the nextSlide
method, like this:
$('#slideshow img').on('click', function(e) {
e.preventDefault();
$('#slideshow').rsfSlideshow('nextSlide');
});
how can I make the slideshow advance to the next slide when clicking on the image itself?