Hi,
I have found a jquery plugin that does exactly what I want it to do except for one thing. It doesnt display a text description underneath the full size image.
JQuery Cycle Plugin - 'updateActivePagerLink' Demo
I dont have much experience with javascript which is why I am using jquery. I was hoping someone could point me towards a function that I can add to this script or help me write one from scratch.
Any help would be much appreciated
Here is the snippet of code for the jquery slideshow I am using
Code:// redefine Cycle's updateActivePagerLink function $.fn.cycle.updateActivePagerLink = function(pager, currSlideIndex) { $(pager).find('li').removeClass('activeLI') .filter('li:eq('+currSlideIndex+')').addClass('activeLI'); }; $('#slideshow').cycle({ timeout: 3000, pager: '#nav', pagerAnchorBuilder: function(idx, slide) { return '<li><a href="#"><img src="' + slide.src + '" width="50" height="50" /></a></li>'; } });




Reply With Quote




Bookmarks