const submit = document.querySelector("#submit"); const honeypot = document.querySelector("#Honey"); honeypot.oninput = function () { if (honeypot.value.length > 0) { submit.disabled = true; } };