Arnaud: in the below example code, you’d change #slider99 to the id found in the wrapper div, it’ll have a class of “owl_carousel”. I’ll leave it to you to work out the exact implementation you’d need.
jQuery( document ).ready(function( $ ) {
$('a.jumpToSlide').click(function(){
$("#slider99").trigger('owl.jumpTo', $(this).attr('data-slide'))
});
});
then use a link like so, change 5 to the slide of your choice
<a href="#" data-slide="5" class="jumpToSlide">This is a link</a>
-
This reply was modified 8 years ago by tobybort.
-
This reply was modified 8 years ago by tobybort. Reason: code display correction