I want to perform a callback function ("revealContent") after the slide transition, but I don't want that function to run when jQuery Cycle first initializes (which it does). Any suggestions?
$(this).find('.content').cycle({
timeout: 0,
startingSlide: 3,
fx: 'scrollHorz',
speed: 700,
easing: 'easeOutQuint',
pager: $(this).prev('.tabs'),
pagerAnchorBuilder: function(idx, slide) {
return '#portfolio li#'+thisID+' .tabs li:eq(' + idx + ')';
},
after: revealContent
});