דילוג לתוכן
jQuery(document).ready(function($){
// סגירה בלחיצה על כל האזור של הפופאפ
$(document).on('click', '.elementor-popup-modal', function(e){
// אם אתה רוצה לסגור על כל קליק בתוך הפופאפ כולל התוכן – מחק את התנאי הבא
if ($(e.target).hasClass('elementor-popup-modal')) {
elementorProFrontend.modules.popup.closePopup({}, e);
}
});
});