Uncaught TypeError: Object #<Object> has no method 'movingBoxes'

前端 未结 10 630
既然无缘
既然无缘 2020-12-08 19:06

Im trying to use the movingBoxes plugin with my asp.net mvc site and it is not working (obviously). I have the movingboxes.js imported in my head tag in the site.master lik

10条回答
  •  执念已碎
    2020-12-08 19:54

    I just had this same problem with the jquery Responsive Slides plugin (http://responsive-slides.viljamis.com/).

    I fixed it by not using the jQuery short version $(".rslides").responsiveSlides(.. but rather the long version: jQuery(".rslides").responsiveSlides(...

    So switching $ to jQuery so as not to cause conflict or using the proper jQuery no conflict mode (http://api.jquery.com/jQuery.noConflict/)

提交回复
热议问题