Issue with Bootstrap carousel and Flex-slider. When both included, the flex slider does not work properly if I remove bootstrap.js. However, without bootstrap.js, the flex slider works but the carousel malfunctions.
Code Snippet:
<div class="carousel-inner">
<div class="item active">img here</div>
<div class="item">img here</div>
<div>
<div class="flexslider">
<ul class="slides">
<li> img here</li>
<li>img here</li>
</ul>
</div>
</div>
</div>
Script:
$('.flexslider').flexslider({
animation: "slide"
});
If you have alternative sliders or suggestions for nested sliders, please share. Assistance is appreciated.