How to disable key input in html form?

Quick question.

How to disable Enter Key when submitting a form?

Is there a way in PHP or Javascript?

+4
source share
2 answers
$('input').on('keydown', function(event) {
   var x = event.which;
   if (x === 13) {
       event.preventDefault();
   }
});
+12
source

The simplest solution:
Do not use the submit button on the form, but use a regular button.
Using Enter / Return acts like a click on the submit button

By the way, I personally hate forms that prevent me from using Enter / Return.
It's just annoying and slow if you need to grab with the mouse to click Submit

, Enter/Return . , , , .

-1

Source: https://habr.com/ru/post/1523418/


All Articles