I am trying to figure out a way to go through a set of slides a couple of times and then return and stop on the first slide.
Currently, I have:
$('#con_featured .scrollable').scrollable({
circular: false
}).navigator({
activeClass: 'current',
navi:'#con_featured .scrollable_nav ul'
}).autoscroll({
autoplay: true,
interval: 8000
});
I did find an article on how to scroll back to the beginning of the slider. And I've seen the event "onSeek" that occurs after each item has scrolled. Is there a way to use that (or another event listener) to find when the slides end?