Plugin not loading

ε祈祈猫儿з 提交于 2019-12-02 04:07:39

jQuery was being loaded twice in that codepen... (updated demo)

In the <head> jquery v2.1.4 is being loaded, and at the bottom of the document, next to where Bootstrap scripts are loaded, jQuery v1.11.2 is loaded.

When jQuery is loaded twice, any scripts that are loaded between to the two versions will be associated with the first copy of jQuery & any loaded scripts. The second copy of jQuery will overwrite the first unless noConflict() is used; but it is kind of silly to run two versions of jQuery on the same page.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!