function checkWidth() {
if(jQuery(window).width() < 577) {
jQuery(".owl-theme").removeClass("owl-carousel");
jQuery(".owl-item").not(".active").remove();
} else {
jQuery(".owl-theme").addClass("owl-carousel");
}
}
//jQuery(window).resize(checkWidth);
jQuery(".owl-carousel").owlCarousel({
arrows: true,
loop:false,
responsive:{
0:{
items:1,
},
520:{
items:1,
},
675:{
items:2,
},
768:{
items:3,
},
992:{
items:4,
}
}
});
Matching Devices