Safari Books Online is a digital library providing on-demand subscription access to thousands of learning resources.
The jCarousel plugin has taken care of setting up the carousel for us, but we want to get fancy and also add a slideshow area.
function slideshowInit() {
// Slideshow setup goes here
}
$(document).ready(function(){
slideshowInit();
$('#thumb-carousel').jcarousel({
scroll: 6,
wrap: 'circular'
});
});
jcarousel() method as follows:var thumbs = $('#thumb-carousel'); function slideshowInit() { // Slideshow setup goes here } $(document).ready(function(){ slideshowInit(); thumbs.jcarousel({ scroll: 6, wrap: 'circular' }); });