Magento – jQuery conflict – newbie

javascript

Installed a search extension and now the shopping cart is broken. Am getting a javascript error.

When the extension is disabled everything works fine. The Extension support told me to empty their .js file. But that does not fix the issue.

I don't understand where the $.noConflict(); should go.

Best Answer

open up your included jQuery file and add to the last line. You can see from view-source from where it is included:

jQuery = jQuery.noConflict(); 

or just

jQuery.noConflict();
Related Topic