cycle plugin updateActivePagerLink not triggered
I have this setup for cycle plugin
- jQuery("#frame").cycle({
- updateActivePagerLink: function(pager, activeIndex) {
- jQuery("#slider-nav").find("li:eq("+activeIndex+")").addClass("current")
- .siblings().removeClass("current");
- }
- });
However I find that the call back function is never triggered.