$(document).ready(function(){
$('.featured-products-slider #featured-products-slider').each(function(i, val) {
var newproductsSlider_id = '#' + $(this).attr('id');
let responsive_items;
responsive_items = {
0: {
items: 2,
margin: 10
},
480: {
items: 2,
margin: 10
},
600: {
items: 2,
margin: 10
},
850: {
items: 3
},
1200: {
items: 4
}
}
$(newproductsSlider_id).owlCarouselAnBS({
loop: 1,
nav: 1,
dots: 1,
autoplay: 1,
navText: ['',''],
autoplayTimeout: 5000,
margin: 30,
mouseDrag: false,
responsive: responsive_items,
});
});
});