admin管理员组

文章数量:1406171

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 0
Add a ment  | 

1 Answer 1

Reset to default 3

Include 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>

本文标签: javascriptOwl Carousel Slider JS ErrorUncaught ReferenceError jQuery is not definedStack Overflow