I just want to know how to prevent an ENTER key press from submit a form in a web-based application. I need a detailed answer.

link|improve this question

18% accept rate
1  
it's happening on the client side, so it's more matter of javascript then c# – kender Feb 25 '09 at 10:14
1  
"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
feedback

10 Answers

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();
	}
}
link|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
3  
Can you please explain where and how to call this function? – mydoghasworms Dec 20 '11 at 5:42
feedback
function checkEnter(e){
 e = e || event;
 return (e.keyCode || event.which || event.charCode || 0) !== 13;
}

Now you can define a keypress handler on the form:

<form [...] onkeypress="return checkEnter(event)">

(tested in FF3, IE7, Chrome)

link|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
feedback

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;
 });
});
link|improve this answer
This was tested in iE6-8 and FF3.5-win. – thetoolman Jan 20 '10 at 21:02
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
feedback

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()">
link|improve this answer
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 at 2:05
feedback

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.

link|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
2  
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
@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
You don't need to make form impossible to submit without JavaScript, though, eh. That's if it worked though, which it doesn't because browsers will happily submit a form that contains no submit-button. – bobince Feb 25 '09 at 12:19
show 3 more comments
feedback
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.

link|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
feedback

How about:

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

In my case, this jQuery JavaScript solved the problem

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

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.

link|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
feedback

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

link|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 at 4:04
feedback

Your Answer

 
or
required, but never shown

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