Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR HTML

html disable enter submit

//per form disabling
<form ... onkeydown="return event.key != 'Enter';">
 
  
//or with jquery  
<script>
 $(document).on("keydown", "form", function(event) { 
    return event.key != "Enter";
});
 </script>
Source by stackoverflow.com #
 
PREVIOUS NEXT
Tagged: #html #disable #enter #submit
ADD COMMENT
Topic
Name
7+8 =