adds a new cell to the carousel
id | string|number | id of a new cell |
index | number | index of a new cell |
myCarousel.addCell(id, index);
// or with autogenerated id
var id = myCarousel.addCell();
if id for a cell is not specified, carousel will generate it
Back to top