Multiple Slide Shows Using Cycle
I'm new at this and I saw a topic earlier using an each function, but I'm not certain on how to implement it. I'm new at this, I'm not familiar with variables and I was confused at the naming convention in that example. This is what I have my slideshow set up
- $(function() {
$('.slideshow').cycle({
fx: 'fade',
timeout: 0,
prev: '.prev',
next: '.next',
after: function (curr,next,opts) { // use args to access internals of cycle
$('.caption').html(this.alt);
var msg = (opts.currSlide + 1) + ' of ' + opts.slideCount;
$('.msg').html(msg);
// do something with "msg"
}
});
});