یک کد بهینهتر برای accordion menu
$(document).ready(function () {
var head = $('.collapse-heading');
$(head).click(function (e) {
e.preventDefault();
$(this).siblings('.collapse-body').slideToggle();
// Toggle the visibility of the sibling element with the class 'collapse-body'
$(this).children('.collapse-control').toggleClass(' open');
// Add and remove element class by clicking
});
});