How to disable enter key in html form?

mistysnake picture mistysnake · Jan 23, 2014 · Viewed 15.8k times · Source

Quick question.

How do you disable Enter Key when you submit the form?

is there a way in PHP or Javascript?

Answer

CRABOLO picture CRABOLO · Jan 23, 2014
$('input').on('keydown', function(event) {
   var x = event.which;
   if (x === 13) {
       event.preventDefault();
   }
});