Implicit form submission doesn't work always
- Published at
- Updated at
- Reading time
- 1min
This post is part of my Today I learned series in which I share all my web development learnings.
My friend Tom and Robin recently had a discussion in our of our Slack channels about implicit form submissions. An implicit form submission is the action of just pressing the ENTER key when focussing an input element. It turns out that this is only possible under two conditions:
- the form has a submit button
- the form has only one input element
So let me quickly share Tom's example.
<form onsubmit="alert(1)">
<!-- this will alert if you press enter while "foo" is focused -->
<input name="foo" />
</form>
<form onsubmit="alert(2)">
<!-- this won't -->
<input name="foo" />
<input name="bar" />
</form>
You could work around this behavior by adding a hidden submit button. But still... this behavior surprised me.
I didn't know about it and it's defined in the spec. Good to know!
Was this TIL post helpful?
Yes? Cool! You might want to check out Web Weekly for more quick learnings. The last edition went out 8 days ago.
Yes? Cool! You might want to check out Web Weekly for more quick learnings. The last edition went out 8 days ago.
Related Topics
Related Articles
- How to fail function calls with undefined arguments with a one-liner (sorta)
- Why doesn't JSON support comments?
- How to split JavaScript strings into sentences, words or graphemes with "Intl.Segmenter"
- Should responsive images work with container queries?
- The missing bridge in web development โ JSON forms