I am trying to make a carousel with Owl Carousel 2 , but when I try to paginate with the mouse (drag and drop), it generates this error: Uncaught TypeError: boolean is not a function
My HTML:
<div class="anim-carousel"> <ul class="carousel"> <?php for($i = 0;$i<30;$i++): ?> <li class="item"> <img src="http://lorempicsum.com/simpsons/100/100/<?= rand(1, 6); ?>"> </li> <?php endfor; ?> </ul> </div>
My Javascript:
<script type="text/javascript" src="/js/owl.carousel.min.js"></script> <script type="text/javascript"> $(document).ready(function(){ $('.carousel').owlCarousel({ items: 5, }); }); </script>
Errors on my console: 
source share