To add a new cell into a carousel, use the method addCell.
myCarousel.addCell(id, index);
The parameters are:
You can also use an autogenerated cell id:
var id = myCarousel.addCell();
To remove a cell from Carousel, use the remove method:
myCarousel.cells(id).remove();
In order to work with carousel we need to get access to its items. For this purpose, you should use their ids which you defined with the addCell() method.
Items are referred to as cells. Thus, we can access any carousel's item in the following way:
var cell = myCarousel.cells(id);
The method will return the cell's object.
Back to top