Skip to content
jQuery(document).ready(function($){
$('.open-catering-popup').on('click', function(e){
e.preventDefault();
elementorProFrontend.modules.popup.showPopup({ id: 3417 });
});
});
jQuery(document).ready(function($){
$('.open-catering-popup').on('click', function(e){
// Allow normal scrolling behavior to the section
setTimeout(function(){
elementorProFrontend.modules.popup.showPopup({ id: 3417 });
}, 3000); // 3 seconds = 3000 milliseconds
});
});