/// document.addEventListener("keypress", ev => { if (!(document.activeElement instanceof HTMLInputElement)) { if (ev.code.startsWith("Digit")) document.forms.buy_product.product.value += ev.code.substring(5) if (ev.code == "Enter") document.forms.buy_product.submit() } })