You have uniqe structure of nested divs and sliders, so call :
$(‘#slider div:nth-child(1)’).trigger(‘tap’);
selects 57 matches!!! and tgigger event like “click” on each of it. Thats why you see nested slider appear on top.
If you have listeners on slides which switch one slides to active state the working code could look like
$(‘#slider div.the-slide:nth-child(1)’).trigger(‘tap’);
But right now click on your slides doesnt work.
So .trigger(‘tap’) - its a click imitation. What click imitation would bring your slide to active state i didnt find out. Maybe you removed basic functionality of slider…
Create click fuctionality by interaction animation and call it from outside as code described in previous posts.