I'm facing a weird issue that is I've an accordion on given URL, problem is accordion is working fine but add to cart button has loose the functionality due to conflicting with bootstrap.js and magento's prototype.js. What should i do now?
Asked
Active
Viewed 606 times
1
-
1What have you tried? Did you add the noConflict() reference to the jQuery stuff? Have you seen this page which explains that? http://api.jquery.com/jQuery.noConflict/ – Walter Mar 07 '14 at 14:15
-
Take a look at this answer I provided to a similar question http://stackoverflow.com/a/15095654/341491 – Geek Num 88 Mar 07 '14 at 14:33
1 Answers
0
If you are using bootstrap.js replace
this.$element.trigger(startEvent);
with
this.$element.triggerHandler(startEvent);
it will work smoothly.

gre_gor
- 6,669
- 9
- 47
- 52

Abhijit Patel
- 3
- 4