Skip to content
jQuery(document).ready(function($) {
$('.no-collapse-accordion').on('click', '.elementor-accordion-title', function() {
var $item = $(this).closest('.elementor-accordion-item');
if ($item.hasClass('elementor-active')) {
return false;
}
});
});