Hi everyone, I'm using the cycle plugin and built a slideshow for it using image thumbnails. The reference I used is:
http://jquery.malsup.com/cycle/pager6.html. The slideshow I built is here:
http://californiapublicsafety.us/home/. It is the middle column called "What our customers are saying."
The slideshow works fine, but I'm not seeing an active state class set to an active slide. I wanted to see that so I can style the image thumbnails when they're on an active slide. In the slideshow I referenced I see it being generated there but not on mine. I'm not sure why. Could it be that I have another slideshow before it? I set the option in the jquery to have an "activePagerClass", but I'm not seeing it. The jquery is this:
- $('#customerWrapper').after('<ul id="customerNav">').cycle({
fx: 'fade',
speed: 1000,
timeout: 8000,
pager: '#customerNav',
activePagerClass: 'activeCustomer',
pagerAnchorBuilder: function(idx, slide) {
return '#customerNav li:eq(' + idx + ') a';
}
Does anyone know why I'm not seeing an active state class set in the navigation? I feel like it's something simple I'm overlooking.