Get the Ultimate Checklist on Digital Transformation
jQuery(function($) {
$(document).on('wpformsAjaxSubmitSuccess', '#wpforms-form-12525', function(event, response) {
console.log('WPForms submission successful!');
// Close the current Elementor popup
if (typeof elementorProFrontend !== 'undefined') {
elementorProFrontend.modules.popup.closePopup();
}
// Open the Thank You popup
setTimeout(function() {
console.log('Opening Thank You popup...');
if (typeof elementorProFrontend !== 'undefined') {
elementorProFrontend.modules.popup.showPopup({
id: 12518
});
} else {
console.log('Elementor Pro frontend is not available.');
}
}, 500);
});
});