> pagerAnchorBuilder: function(idx, slide) { > return '<li> # ' + slide.src + ' </li>'; } > }) > ; > > particularly the part where it calls back in the "slide.src" . I want to > have it call back a different part of the slide area. Also I'm not sure what > part I want to call. What i have for the whole image set that rotates is > this:
pagerAnchorBuilder gives you the slide element. If you want to find the image within that slide just use the slide as context on a query: pagerAnchorBuilder: function(idx, slide) { var src = $('img',slide).attr('src'); return '<li> # ' + src + ' </li>'; } }