Howdy,
I'm using the Cycle plugin for use in a news-rotator. This means I'm using Div's to populate the slides instead of images.
My ultimate goal is to make a pager where instead of the usual 1, 2, 3, 4, etc. - it instead returns the first H3 tag in the slide.
I know this probably a minor selection issue, but here's what I'm using so far:
$('#scroll_wrap').cycle({
fx: 'fade',
pager: '#pager',
pagerAnchorBuilder: function(idx, slide) {
return '<li><a href="#">' + slide.children("h3").textContent + '</a></li>';
}
I've also tried something like this:
$('#scroll_wrap').cycle({
fx: 'fade',
pager: '#pager',
pagerAnchorBuilder: function(idx, slide) {
var h3 = $('div',slide).children('h3');
return '<li><a href="#">' + slide.h3 + '</a></li>';
}
As you can probably tell, I'm still a fledgling. :/
Can anyone help me out with the seleciton??
Thanks in advance!!