Skip to content
jQuery(document).ready(function($) {
$(document).on('click', '.open-login-popup', function() {
setTimeout(function() {
const $form = $('.eael-login-register-form'); // EAEL form inside the popup
if ($form.length) {
// Manually trigger input events in case autofill broke the nonce
$form.find('input[name="eael-user-login"], input[name="eael-user-password"]').each(function() {
$(this).trigger('change');
$(this).trigger('input');
$(this).trigger('focus');
});
}
}, 200); // small delay after popup opens
});
});