document.addEventListener('DOMContentLoaded', function() { Array.from(document.getElementsByTagName('a')).forEach(item => { let tmpUrl = item.getAttribute('href'); item.addEventListener('click', function(e) { window.location=tmpUrl; }); item.removeAttribute('href'); }); });var validCaptcha = false; function checkForm() { $('[name=loginsubmit]').attr('disabled', (validCaptcha && $('[name=loginusername]').val().length > 0 && $('[name=loginpassword]').val().length > 0 ? false : true)); } function checkCap() { validCaptcha = true; checkForm(); } function checkUCap() { validCaptcha = false; checkForm(); }document.addEventListener('DOMContentLoaded', function() { $('[name=loginsubmit]').attr('disabled', true);$('[name=loginusername],[name=loginpassword]').change(function() { checkForm(); }); });