jQuery(document).ready(function() { jQuery('.feature').cycle ({ fx: 'fade', speed: 'slow', timeout: 7000, before: onBefore, pager: '#featurenav' }); function onBefore() { jQuery('#headline').html(this.alt); } });
#headline is my caption area with each slide assigned with an <alt> tag to display the html text. On Mar 4, 11:50 pm, HM-User <m.lawrencehu...@gmail.com> wrote: > I am looking at the jQuery Cycle Demo of the Callbacks example. Before > and after each slide appears, a caption or small text can show below > the slide. However, how can I make some or all the text be a <a href></ > a> tag so people can click on the callback text to go to a story?