$(window).on('load resize', function () { const listPlansStrLtrl = ".list-plans"; var width = $(this).width(); if(width < 768){ $(listPlansStrLtrl).slick({ dots: true, responsive: [{ settings: { slidesToShow: 1 } }] }); } else if (width >= 768 && $(listPlansStrLtrl).hasClass("slick-slider")) { $(listPlansStrLtrl).slick('unslick'); } });