After initialization, you can call the following methods on the plugin instance:
start()Starts the autoscrolling.
Example:
$('.jcarousel').jcarouselAutoscroll('start');stop()Stops the autoscrolling.
Example:
$('.jcarousel').jcarouselAutoscroll('stop');reload([options])Reloads the plugin. This method is useful to reinitialize the plugin or if you want to change options at runtime.
-
A set of configuration options.
$('.jcarousel').jcarouselAutoscroll('reload', {
interval: 1500
});destroy()Removes the plugin functionality completely. This will return the element back to its initial state.
$('.jcarousel').jcarouselAutoscroll('destroy');