Uncaught TypeError: $(…).owlCarousel is not a function

前端 未结 4 404
[愿得一人]
[愿得一人] 2021-01-28 20:21

I have added owlCarousel to my page. but im getting this error. and stuck with it hours.. :(

HTML code

function in custom.js

4条回答
  •  北海茫月
    2021-01-28 20:56

    @isanka in custom.js try this:

    (function($) {
        $(document).ready(function() {
                // your code;
        });
    }) (jQuery);
    

    As @the_5imian said, include jquery 1.11.3 before all included scripts.

提交回复
热议问题