I have a slideshow in which Cycle is auto-generating thumbnails using the pagerAnchorBuilder option:
pagerAnchorBuilder: function(idx, slide) {
return '<li><a href="#"><img src="' + slide.src + '" width="38" height="45" /></a></li>';
},
I want to hide the last thumbnail (the last 2 thumbanails actually). I know I can use something like:
$('li').eq(-1).hide();
Just not sure where to put it so it happens after all the thumbnails are loaded.