Skip to content
jQuery(function($) {
$(document).on('wpformsAjaxSubmitSuccess', '#wpforms-form-12525', function(event, response) {
console.log('WPForms 12525 SUCCESS');
setTimeout(function() {
// Close the current Elementor popup
if (typeof elementorProFrontend !== 'undefined' &&
elementorProFrontend.modules.popup) {
elementorProFrontend.modules.popup.closePopup();
}
// Open Thank You popup
setTimeout(function() {
console.log('Opening Thank You popup 12518');
if (typeof elementorProFrontend !== 'undefined' &&
elementorProFrontend.modules.popup) {
elementorProFrontend.modules.popup.showPopup({
id: 12518
});
}
}, 400);
}, 300);
});
});