1 2 3 4 5 6 7 8 9
globalThis.addEventListener("DOMContentLoaded", () => { document.querySelectorAll("input.danger").forEach(el => { el.addEventListener("click", ev => { if (!confirm(`Really ${(el as HTMLInputElement).value}?`)) { ev.preventDefault() } }) }) })