Skip to content jQuery(document).ready(function($){
let scrollPos = 0;// Save scroll position before popup opens
$(document).on('elementor/popup/show', function(){
scrollPos = $(window).scrollTop();
});// Restore scroll AFTER popup animation completes
$(document).on('elementor/popup/hide', function(){
setTimeout(function(){
$('html, body').scrollTop(scrollPos);
}, 150); // wait a bit to avoid Elementor animation jump
});
});