No, there is no way to do this.
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 9 years, 6 months ago by
tobybort.
-
This reply was modified 9 years, 6 months ago by
tobybort. Reason: code display correction
Thanks tobybort for providing this coding solution.
Arnaud – did this work for you?