$('.moreview').owlCarousel({ margin: 20, nav: true, responsive: { 0: { items: 1 }, 600: { items: 3 }, 1000: { items: 5 } } }) $(".video .moreview") .on('click', '.owl-item', function() { var now = $(this).index(); console.log($(this).index()); $(".video .owl-item").not(this).find('.item').removeClass('now'); $(this).find('.item').addClass('now'); $(".video .video-item").removeClass('now').eq(now).addClass('now'); })