abrechenbarkeit/script.js

11 lines
345 B
JavaScript
Raw Normal View History

2024-11-03 17:38:21 +00:00
/// <reference lib="dom" />
document.addEventListener("keypress", ev => {
if (!(document.activeElement instanceof HTMLInputElement)) {
if (ev.code.startsWith("Digit"))
2024-11-03 20:21:35 +00:00
document.forms.buy_product.pcode.value += ev.code.substring(5)
2024-11-03 17:38:21 +00:00
if (ev.code == "Enter")
document.forms.buy_product.submit()
}
})