Hi Support,
i am trying to jump to a specific index within a carousel.
First i have to find the index by finding a specific data-title inside the carousel, than jump to the carousel page where the title is located.
my code:
carousel = Appery('getijdencarousel');
console.log(carousel);
index = $(carousel).find("div[data-title='2013-11-05']").attr("_idx");
carousel.carouselRoot.to({'index': index});
console.log(index);
However, the index is undefined and the 'to' method not recognised
Can you help me in the right direction?