document.addEventListener('DOMContentLoaded', function () { document.querySelectorAll('a.popup-trigger').forEach(function (link) { link.addEventListener('click', function (e) { const href = link.getAttribute('href'); if (href.startsWith('#popup-')) { e.preventDefault(); const popupId = href.replace('#popup-', ''); if (typeof elementorProFrontend !== 'undefined') { elementorProFrontend.modules.popup.showPopup({ id: parseInt(popupId) }); } } }); }); });