I\'m using cbpFWSlider and it doesn\'t appear to include an option for autoplay. I\'m pretty new to Jquery and have Googled to high heaven but have yet to find a solution. i
Check this, infinite
$('document').ready(function(){ $('#cbp-fwslider').cbpFWSlider(); setInterval( function(){ if($('.cbp-fwdots').find('span:last').hasClass('cbp-fwcurrent')) { $('.cbp-fwdots').find('span').click(); } else{ $('.cbp-fwnext').click(); } } ,3000 );});