document.addEventListener("DOMContentLoaded", function () { const accordion = document.querySelector('#my-accordion'); if (accordion) { const firstTab = accordion.querySelector('.elementor-tab-title:first-child'); const firstContent = accordion.querySelector('.elementor-tab-content:first-child'); // פותח את הראשון firstTab.classList.add('elementor-active'); firstContent.style.display = 'block'; // מבטל אפשרות לסגור אותו firstTab.addEventListener('click', function (e) { e.preventDefault(); e.stopPropagation(); }); } });