Accordion collapse fires a "hidden" event, which is also relevant for the Modal module. Thus, there is a way to prevent modal closure:
$(document).on('click', 'a.accordion-toggle', function(e) {
$(e.target).parent().siblings('.accordion-body').on('hidden', function(e) {
e.stopPropagation();
});
});
You need a Hope hat.
source
share