Closed AndreiHudovich closed 1 year ago
I have a Login Popup with a link that opens Sign Up Popup (if a user have no account). After closing both of the Popups I need a form cleanup.
PROBLEM: The Login Popup is cleaned without problems, but the Sign Up Form is not cleaned, because callbacks are not triggered.
Login Popup Code
$('#open-login-modal').magnificPopup({ items: { src: '#modal-login', type: 'inline' }, midClick: true, mainClass: 'mfp-fade', callbacks: { afterClose: function() { cleanUpForm($('#login-form')); } } });
Sign Up Popup
$('#open-sign-up-modal').magnificPopup({ items: { src: '#modal-sign-up', type: 'inline' }, midClick: true, mainClass: 'mfp-fade', callbacks: { afterClose: function() { cleanUpForm($('#sign-up-form')); } } });
I have a Login Popup with a link that opens Sign Up Popup (if a user have no account). After closing both of the Popups I need a form cleanup.
PROBLEM: The Login Popup is cleaned without problems, but the Sign Up Form is not cleaned, because callbacks are not triggered.
Login Popup Code
Sign Up Popup