Thread Starter
jroel
(@jroel)
Figured it out. The div’s containing .responsive-accordion-head click function bubbles up to the parent accordion and fires again. This causes the click event to open, then close the accordion.
To fix this: access the event.target and use:
e.stopImmediatePropagation();
to prevent the function from firing when it hit’s it’s parent accordion.