Potlaceni odesilani pomoci Enter
- tom
- Člen | 171
Ahoj, chci se zeptat, jestli lze nejak potlacit odesilani formulare kliknutim na Enter. Jde mi o to, aby bylo nutne vzdy kliknout na tlacitko. Protoze pokud uzivatel klikne do inputu, tam neco upravi a potom zmackne Enter tak se hned ten formular submitne. A toto chovani bych rad potlacil jestli to jde. Diky
- dakur
- Člen | 493
Např.:
const allInputs = document.querySelectorAll('input');
allInputs.forEach((el) => el.addEventListener('keypress', (ev) => {
if (ev.key === 'Enter') {
ev.preventDefault();
}
}));
https://codepen.io/…/pen/wvQgojz
Editoval dakur (26. 6. 2023 11:29)