I have this code:
$(".slick-slider-view").slick({
dots: true,
infinite: true,
slidesToShow: 3,
slidesToScroll: 1
});
I need the value of 'slidesToShow to change to 2 when the window width is less than 1000px:
$(".slick-slider-view").slick({
dots: true,
infinite: true,
slidesToShow: 2,
slidesToScroll: 1
});
How can I use @media like feature with jquery?