Skip to content
document.addEventListener('DOMContentLoaded', function() {
jQuery(document).on('elementor/popup/show', function(event, id, instance) {
// Prevent closing when clicking inside form fields
jQuery('#elementor-popup-' + id).on('click', 'input, select, textarea, .elementor-field-type-select', function(e) {
e.stopPropagation();
});
});
});