Is it possible to link to a specific slide in a slider?

Thanks bartekkustra for the script. That was helpful. but for some reason I couldn’t get it to work so I did some google around and find out the nth-child doesn’t work with a class, I change this line
$('.w-round:nth-child(1)').trigger('tap');
to
$('div.w-round div:nth-child(1)').trigger('tap');
and it works!

I have no background in javascript, if there is any correction to this, feel free to share~

3 Likes