document.addEventListener('DOMContentLoaded', function() {
let elements = document.querySelectorAll( '.barra' );
let popupposts = ['51437']; /* enter your popups IDs here , in the order you want them to show up */
elements.forEach(function(e,i){
e.addEventListener( 'mouseenter', function(){
elementorProFrontend.modules.popup.showpopup( { id: popupposts[i] } );
} );
});
});
document.addEventListener('DOMContentLoaded', function() {
let elements = document.querySelectorAll( '.barra' );
let popupposts = [ '51437',]; /* enter your popups IDs here , in the order you want them to show up */
elements.forEach(function(e,i){
e.addEventListener( 'mouseenter', function(){
elementorProFrontend.modules.popup.showpopup( { id: popupposts[i] } );
} );
e.addEventListener( 'mouseleave', function(event){
jQuery('body').click();
});
});
});