Skip to content
document.addEventListener('DOMContentLoaded', function () {
const buttons = document.querySelectorAll('[data-popup-id]');
buttons.forEach(function (btn) {
btn.addEventListener('click', function () {
const popupID = btn.getAttribute('data-popup-id');
if (popupID) {
elementorProFrontend.modules.popup.showPopup({ id: parseInt(popupID) });
}
});
});
});