Installation

To setup autoscrolling, just call jcarouselAutoscroll() on the carousel root element:

$(function() {
    $('.jcarousel')
        .jcarousel({
            // Core configuration goes here
        })
        .jcarouselAutoscroll({
            interval: 3000,
            target: '+=1',
            autostart: true
        })
    ;
});

See Configuration for more information about the configuration options.