jQuery
jQuery(window).load(function() {
jQuery.each( elementorFrontend.documentsManager.documents, ( id, document ) => {
if ( document.getModal ) { // It's a popup document
document.getModal().on( 'show', () => {
console.log( 'Run your script here' );
} );
}
});
});