I am using the jQuery Cycle plugin with pagination found here (about half way down the page).
Currently, all my pagination looks like simple 1, 2, 3, 4 a tags, as per the example. However, I want to make these thumbnail images instead.
It looks like the nav div is created by the plugin script itself, so if I build my own list of thumbnails and specify them as the nav elements, the plugin just appends its own pagination to that div.
Would anyone know the correct way to modify this plugin to allow image thumbnails?
My code:
$('#frontimageswap')
.before('<div id="nav">')
.cycle({
fx: 'turnDown',
speed: 'fast',
timeout: 5000,
pager: '#nav'
});