Answer the question
In order to leave comments, you need to log in
How to make two different sliders with different navigation arrows using the slick plugin?
I made one slider and set up navigation arrows (arrows) on it, and now on the next slider, below, you need to set up navigation arrows differently (in other places)
Answer the question
In order to leave comments, you need to log in
Copied from one of my training projects, I hope it works
$('.rotator-table').slick({
slidesToShow: 3,
slidesToScroll: 3,
autoplay: false,
autoplaySpeed: 2000,
arrows: false,
});
$('.rotator-left').click(function(){
$('.rotator-table').slick('slickPrev');
})
$('.rotator-right').click(function(){
$('.rotator-table').slick('slickNext');
})
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question