I have a repeater on my first slide and I would like it to go to a different slide based on which container in my repeater the user clicks on. I initially thought I could do this with some simple code
$w . onReady ( function () {
$w ( “#container4” ). onClick (( event ) => {
$w ( “#fullWidthSlides1” ). changeSlide ( 2 );
})});
and then repeat for each different container and different slide, but then I realised that every container in the repeater has the same unique ID so that that was not going to work. I am still VERY new to all this so I would appreciate it if someone could help me solve this problem. Thank you!