For example if you use a popup to build a menu and link to another popup with a form inside (login, registration).
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
jQuery( document ).ready( function( $ ) { | |
// Let's assume the trigger is a link in div with ID #new-popup-trigger | |
$( "#new-popup-trigger a" ).click(function() { | |
// Replace XXX1 with the post id of the current popup | |
$( "#elementor-popup-modal-XXX1 .dialog-close-button" ).click(); | |
// Replace XXX2 with the post id of the new popup | |
elementorProFrontend.modules.popup.showPopup( { id: XXX2 } ); | |
}); | |
} ); |