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.
feedback
|
|
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.
| |||||||||
feedback
|
Now you can define a keypress handler on the form:
(tested in FF3, IE7, Chrome) | |||||
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!
| |||||
feedback
|
|
Simply return false from the onsubmit handler
or if you want a handler in the middle
| |||
feedback
|
|
The ENTER key merely activates the form's default submit button, which will be the first
the browser finds within the form. Therefore don't have a submit button, but something like
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 I know of no way of doing this without invoking javascript at all. | |||||||||||||
feedback
|
Then on your form:
Though, it would be better if you didn't use obtrusive JavaScript. | |||||
feedback
|
|
In my case, this jQuery JavaScript solved the problem
| |||
|
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. | |||||||
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). | |||
feedback
|