1

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?

http://etekstudio.org/demo/crateen/test-featured1

Jeromy French
  • 11,812
  • 19
  • 76
  • 129
zaib
  • 5
  • 1
  • 5
  • 1
    What 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 Answers1

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