window.addEventListener(“load”, function () { document.querySelectorAll(‘.toc-link’).forEach(link => { link.addEventListener(‘click’, function (e) { e.preventDefault(); e.stopImmediatePropagation(); // جلوگیری از اجرای اسکریپتهای دیگه const targetId = this.getAttribute(‘href’); const target = document.querySelector(targetId); if (target) { const offset = target.getBoundingClientRect().top + window.scrollY; window.scrollTo({ top: offset, behavior: ‘smooth’ }); } }, true); // استفاده از capture=true تا قبل از المنتور اجرا بشه }); });