I am using syncing sliders
"fullslide" - 1 slide at a time
"thumbslide" - 5 slides at a time, used as nav for fullslide
when selecting 1 slide from thumbslide i want it to become active without sliding to the left or to the center. Is there a way to achieve this?
CODE
$('.slider-for').slick({
slidesToShow: 1,
slidesToScroll: 1,
arrows: false,
fade: true,
asNavFor: '.slider-nav',
accessibility: false
});
$('.slider-nav').slick({
slidesToShow: 5,
slidesToScroll: 1,
asNavFor: '.slider-for',
dots: false,
centerMode: false,
focusOnSelect: true,
accessibility: false
});
I tried:
$('#sliders').slick({
accessibility: false
});
from: Is there a way to disable slick slider from autoscrolling when clicked on navigation slider?
still not working
Thank you