Skip to content
jQuery(document).ready(function() {
const params = new URLSearchParams(window.location.search);
const popupId = params.get('elementor_popup');
if (popupId) {
setTimeout(() => {
elementorProFrontend.modules.popup.showPopup({ id: parseInt(popupId) });
}, 800);
}
});