Sometimes, we want to submit a form by pressing enter without a submit button with HTML.
In this article, we’ll look at how to submit a form by pressing enter without a submit button with HTML.
How to submit a form by pressing enter without a submit button with HTML?
To submit a form by pressing enter without a submit button with HTML, we add a hidden submit button.
For instance, we write
<input type="submit" hidden />
to add the hidden
attribute to the submit button to make it hidden.
Conclusion
To submit a form by pressing enter without a submit button with HTML, we add a hidden submit button.