I\'m using Bootstrap 4.0\'s collapse component in an accordion similar to what they have on their docs.
-
2020-12-18 06:55
You can try
jQuery(function($){
$('[data-toggle=collapse]').on('click', function (e) {
e.preventDefault();
if(! $(this).hasClass('collapsed')){
e.stopPropagation();
return false;
}
});
});