Seems the nested carousel is working, but the inner carousel isn't triggering autoplay looping function properly which it stops after it changes to the second slide. I'm trying to make the inner carousel as autoplay looping fadeout carousel, but it just worked once, then need to refresh to restart the loop.
Don't know what's wrong with my code.
Here's my code.
$('.main-carousel').owlCarousel({
loop:true,
margin:10,
nav:true,
items:1,
});
$('.fade').owlCarousel({
loop:true,
margin:10,
nav:true,
items:1,
animateOut: 'fadeOut',
autoplay:true,
autoplayTimeout:1000,
autoplayHoverPause:false
});