$.extend is not a function

后端 未结 4 1569
北荒
北荒 2021-01-20 12:23

I\'m trying to integrate the svg edit - editor, which is using jQuery, into Magento. The problem is that Magento uses Prototype, and therefore I\'m using the jQuery.no

4条回答
  •  清酒与你
    2021-01-20 12:43

    did you change the jQuery namespace with noConflict. You seem to be still using $ to invoke the func. Change the Jquery namespace using the noConflict approach to something like $$ or maybe jQ then invoke your method like jQ.extend instead of $.extend..

提交回复
热议问题