Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How do you prevent an ENTER key press from submitting a form in a web-based application? I need a detailed answer.

share|improve this question
1  
it's happening on the client side, so it's more matter of javascript then c# – kender Feb 25 '09 at 10:14
2  
"Prevent ENTER submits" would probably inconvenience some of your users (not everybody feels the urge to use the mouse for submitting the form, accessibility notwithstanding). What are you trying to achieve? Not have ENTER submit the form on input type="text"? – Piskvor Feb 25 '09 at 10:54
+1 - I had exactly the same question this very day in my business. Yet I've found the answer elsewhere. Nice to see a different answer here – prinzdezibel Feb 25 '09 at 20:12

14 Answers

[revision 2012, no inline handler, keep textarea enter handling]

function checkEnter(e){
 e = e || event;
 var txtArea = /textarea/i.test((e.target || e.srcElement).tagName);
 return txtArea || (e.keyCode || e.which || e.charCode || 0) !== 13;
}

Now you can define a keypress handler on the form:
<form [...] onkeypress="return checkEnter(event)">

document.querySelector('form').onkeypress = checkEnter;
share|improve this answer
1  
By the way: you could add a check for the input type (via event source) in the checkEnter function to exclude textarea's. – KooiInc Feb 25 '09 at 23:12
1  
Works. I added this to a single input because I wanted to avoid <enter> from submitting the form. It had a button to perform a internal search, and it actually improves usability. – Foxinni Aug 30 '12 at 15:46
One problem with this approach (using this function with an event-handler on the form as a whole), is that it also prevents enters from occurring in textareas that are also in the form (where enters are usually desirable). – LonnieBest Dec 26 '12 at 7:40
@LonnieBest: thanks for noticing. You did read my comment on this answer (see above), did you? Anyway, I revised this rather old answer. – KooiInc Dec 26 '12 at 11:40
Thanks for the answer but I think you have 2 typos. The event.which || event.charCode section should be e.which || e.charChode right? Otherwise FF freaks out and there would be no point in checking if e is null at the beginning. – shanabus Jan 14 at 21:19
show 3 more comments

Here is a jQuery handler that can be used to stop enter submits, and also stop backspace key -> back. The (keyCode: selectorString) pairs in the "keyStop" object are used to match nodes that shouldn't fire their default action.

Remember that the web should be an accessable place, and this is breaking keyboard users expectations. That said, in my case the web application I am working on doesn't like the back button anyway, so disabling its' key shortcut is OK. The "should enter -> submit" discussion is important, but not related to the actual question asked.

Here is the code, up to you to think about accessability and why you would actually want to do this!

$(function(){
 var keyStop = {
   8: ":not(input:text, textarea, input:file, input:password)", // stop backspace = back
   13: "input:text, input:password", // stop enter = submit 

   end: null
 };
 $(document).bind("keydown", function(event){
  var selector = keyStop[event.which];

  if(selector !== undefined && $(event.target).is(selector)) {
      event.preventDefault(); //stop event
  }
  return true;
 });
});
share|improve this answer
This was tested in iE6-8 and FF3.5-win. – thetoolman Jan 20 '10 at 21:02
3  
In a simplest way: $("#myinput").keydown(function (e) { if(e.which == 13) e.preventDefault(); }); The key is to use "keydown" and event.preventDefault() together. It doesn't work with "keyup". – lepe Jun 9 '10 at 6:45
This has the advantage over other solutions which simply block key 13 that the browser's auto-suggest will continue to work properly. – jsalvata Oct 13 '12 at 15:00

You will have to call this function whic will just cancel the default submit behaviour of the form. You can attach it to any input field or event.

function doNothing() {  
var keyCode = event.keyCode ? event.keyCode : event.which ? event.which : event.charCode;
    if( keyCode == 13 ) {


	if(!e) var e = window.event;

	e.cancelBubble = true;
	e.returnValue = false;

	if (e.stopPropagation) {
		e.stopPropagation();
		e.preventDefault();
	}
}
share|improve this answer
1  
e should be an argument and then you should check for the window.event. Also, you should be getting the keycode from the event. Finally, you should return false. – ntownsend Jan 20 '10 at 21:10
7  
Can you please explain where and how to call this function? – mydoghasworms Dec 20 '11 at 5:42

Simply return false from the onsubmit handler

<form onsubmit="return false;">

or if you want a handler in the middle

<script>
var submitHandler = function() {
  // do stuff
  return false;
}
</script>
<form onsubmit="return submitHandler()">
share|improve this answer
1  
This seems to be the simplest answer. I tried it on Google Chrome and it works fine. Have you tested this in every browser? – styfle Jan 10 '12 at 2:05

The ENTER key merely activates the form's default submit button, which will be the first

<input type="submit" />

the browser finds within the form.

Therefore don't have a submit button, but something like

<input type="button" value="Submit" onclick="submitform()" />


EDIT: In response to discussion in comments:

This doesn't work if you have only one text field - but it may be that is the desired behaviour in that case.

The other issue is that this relies on Javascript to submit the form. This may be a problem from an accessibility point of view. This can be solved by writing the <input type='button'/> with javascript, and then put an <input type='submit' /> within a <noscript> tag. The drawback of this approach is that for javascript-disabled browsers you will then have form submissions on ENTER. It is up to the OP to decide what is the desired behaviour in this case.

I know of no way of doing this without invoking javascript at all.

share|improve this answer
Weirdly this does not work in Firefox if there is only one field. – DanSingerman Feb 25 '09 at 10:38
-1. Terrible for accessibility. – bobince Feb 25 '09 at 12:01
3  
Terrible for accessibility? Maybe. However it does answer they guy's question, which is what SO is for... Maybe an edit to the answer to point out the accessibility issue is a good compromise? – Neil Barnwell Feb 25 '09 at 12:03
1  
@bobince - maybe the question deserves -1 due to accessibility, but this accurate answer to the question? Don't think so. Also, there are valid uses cases where you want to do this. – DanSingerman Feb 25 '09 at 12:12
1  
Tested in all of those plus Opera with one text input and one input-button: all still submitted the form on Enter. You obviously need JavaScript to ‘solve’ the Enter issue, but the trick is to do that whilst not making the page completely inoperable where JS is unavailable. – bobince Feb 25 '09 at 13:16
show 3 more comments
//Turn off submit on "Enter" key

$("form").bind("keypress", function (e) {
    if (e.keyCode == 13) {
        $("#btnSearch").attr('value');
        //add more buttons here
        return false;
    }
});
share|improve this answer
was looking around for something like this.. Thanks! – Daniel Hunter Jun 13 '12 at 0:05
stopSubmitOnEnter (e) {
  var eve = e || window.event;
  var keycode = eve.keyCode || eve.which || eve.charCode;

  if (keycode == 13) {
    eve.cancelBubble = true;
    eve.returnValue = false;

    if (eve.stopPropagation) {   
      eve.stopPropagation();
      eve.preventDefault();
    }

    return false;
  }
}

Then on your form:

<form id="foo" onkeypress="stopSubmitOnEnter(e);">

Though, it would be better if you didn't use obtrusive JavaScript.

share|improve this answer
I like this version because it's more readable than the one by @hash. One problem though, you should return false within the "if(keycode == 13)" block. As you have it, this function prevents any keyboard input in the field. Also @hash's version includes e.keyCode, e.which, and e.charCode... not sure if e.charCode is important but I put it in there anyway: "var keycode = eve.keyCode || eve.which || eve.charCode;". – Jack Senechal Feb 17 '11 at 18:00
Thanks, Jack. I edited the answer to check for charCode. I also moved the return false inside the if-block. Good catch. – ntownsend Feb 17 '11 at 18:36

In my case, this jQuery JavaScript solved the problem

jQuery(function() {
            jQuery("form.myform").submit(function(event) {
               event.preventDefault();
               return false;
            });
}
share|improve this answer

How about:

<asp:Button ID="button" UseSubmitBehavior="false"/>
share|improve this answer

This link provides a solution that has worked for me in Chrome, FF, and IE9 plus the emulator for IE7 and 8 that comes with IE9's developer tool (F12).

http://webcheatsheet.com/javascript/disable_enter_key.php

share|improve this answer
In case the link is broken, add this code to the header area of your page. <script type="text/javascript"> function stopRKey(evt) { var evt = (evt) ? evt : ((event) ? event : null); var node = (evt.target) ? evt.target : ((evt.srcElement) ? evt.srcElement : null); if ((evt.keyCode == 13) && (node.type=="text")) {return false;} } document.onkeypress = stopRKey; </script> – Miaka Apr 25 '12 at 4:04

Preventing "ENTER" to submit form may inconvenience some of your users. So it would be better if you follow the procedure below:

Write the 'onSubmit' event in your form tag:

<form name="formname" id="formId" onSubmit="return testSubmit()" ...>
 ....
 ....
 ....
</form>

write Javascript function as follows:

function testSubmit(){
  if(jQuery("#formId").valid())
      {
        return true;
      }
       return false;

     } 

     (OR)

What ever the reason, if you want to prevent the form submission on pressing Enter key, you can write the following function in javascript:

    $(document).ready(function() {
          $(window).keydown(function(event){
          if(event.keyCode == 13) {
               event.preventDefault();
               return false;
              }
           });
         });

thanks.

share|improve this answer

You can trap the keydown on a form in javascript and prevent the even bubbling, I think. ENTER on a webpage basically just submits the form that the currently selected control is placed in.

share|improve this answer
depends on a control tho ;) in a textarea it just moves to next line. So, catching all 'enter' keypress events is not a good idea. – kender Feb 25 '09 at 10:13
Possibly, but in that case would the form have a keydown event anyway? – Neil Barnwell Feb 25 '09 at 12:01
You would do it directly on all input-type-text and other similar controls. It's a bit of a pain and not really worth bothering with in most cases, but if you have to... – bobince Feb 25 '09 at 13:18

Another approach is to append the submit input button to the form only when it is supposed to be submited and replace it by a simple div during the form filling

share|improve this answer

Simply add this attribute to your FORM tag:

onsubmit="return gbCanSubmit;"

Then, in your SCRIPT tag, add this:

var gbCanSubmit = false;

Then, when you make a button or for any other reason (like in a function) you finally permit a submit, simply flip the global boolean and do a .submit() call, similar to this example:

function submitClick(){

  // error handler code goes here and return false if bad data

  // okay, proceed...
  gbCanSubmit = true;
  $('#myform').submit(); // jQuery example

}
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.