I have been trying to get this slider working for 2 days now and I can't figure it out. I have tired changing the JS library and check all the CSS and JS roots they seem to be fine to me. but its e up with these errors:
Uncaught ReferenceError: jQuery is not defined owl.carousel.min.js:47
Uncaught TypeError: undefined is not a function:99
View my code here:
Slider Site: .html
If anyone can help I would be very grateful.
I have been trying to get this slider working for 2 days now and I can't figure it out. I have tired changing the JS library and check all the CSS and JS roots they seem to be fine to me. but its e up with these errors:
Uncaught ReferenceError: jQuery is not defined owl.carousel.min.js:47
Uncaught TypeError: undefined is not a function:99
View my code here: http://pastebin./rY7fUVxU
Slider Site: http://owlgraphic./owlcarousel/demos/lazyLoad.html
If anyone can help I would be very grateful.
Share Improve this question edited Jun 20, 2020 at 9:12 CommunityBot 11 silver badge asked Aug 6, 2014 at 8:59 jonathanl5660jonathanl5660 1611 gold badge1 silver badge12 bronze badges 01 Answer
Reset to default 3Include jquery file before the plugin files.
Change this:
<script src="js/owl.carousel.min.js" type="text/javascript"></script>
<script src="js/jquery-1.10.2.min.js" type="text/javascript"></script>
to:
<script src="js/jquery-1.10.2.min.js" type="text/javascript"></script>
<script src="js/owl.carousel.min.js" type="text/javascript"></script>