Why is it that a form with a single input field will reload the form when the user enters a value and presses the Enter key, and it does not if there are 2 or more fields in the form. I wrote a simple page to test this oddity.

If you enter a value in the second form and press Enter, you'll see it reloads the page passing the entered value as if you called GET. why? and how do I avoid it?

http://testformenter.html?partid=123

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>testFormEnter</title>
</head>
<body>
<form>
  <input type="text" name="partid2" id="partid2" />
  <input type="text" name="partdesc" id="partdesc"  />
</form>
  <p>2 field form works fine</p>
<form>
<input type="text" name="partid" id="partid"  />
</form>
<p>One field form reloads page when you press the Enter key why</p>
</body>
</html>
link

69% accept rate
feedback

7 Answers

up vote 10 down vote accepted

This is a little known "Quirk" that has been out for a while. I know some people have resolved it in various ways.

The easiest bypass in my opinion is to simply have a second input that isn't displayed to the user. Granted not all that user friendly on the backend, it does work to resolve the issue.

I should note that the most common place that I hear of this issue is with IE specifically and not with FireFox or others. Although it does seem to affect them as well.

link
Thanks, I wish it were documented somewhere. I wasted hours debugging a large page thinking it was something else, tied to my ajax. I only discovered the "quirk" after I extracted the code and started to delete line after line. What a waste of time! – sdfor Sep 2 '09 at 20:54
And you are right, it's an easy fix with a hidden field. Incidentally if affects firefox 3.5.2. Maybe it's considered a feature. – sdfor Sep 2 '09 at 21:06
Ah yes, I feel your pain....that is how I found out about it, say 5-6 years ago... – Mitchel Sellers Sep 2 '09 at 21:06
Also I discovered that a hidden field doesn't always work. On one page it did and another it didn't - also odd. but hiding the field with javascript did the trick. You need to write an article "Things you don't know that will eat up your time" - thanks again – sdfor Sep 2 '09 at 21:23
feedback

This is a known bug in IE6/7/8. It doesn't appear that you will get a fix for it.

The best workaround you can do for this, is to add another hidden field (if your engineering conscience permits). IE will no longer auto-submit a form when it finds that there are two input-type fields in the form.

Update

In case you were wondering why this is the case, this gem comes straight out of the HTML 2.0 specification (Section 8.2).

link
This also happens in Firefox 3.5 – Dimitri Wetzel Oct 20 '09 at 10:40
1  
+1 for the link to the culprit in the spec – Alex James Jul 18 '11 at 23:39
feedback

Pressing Enter works differently depending on (a) how many fields there are and (b) how many submit buttons there are. It may do nothing, it may submit the form with no 'successful' submit button, or it may pretend the first submit button was clicked (even generating an onclick for it!) and submit with that button's value.

For example, if you add an input type="submit" to your two-field form, you'll notice it too submits.

This is an ancient browser quirk going back at least as far as early Netscape (maybe further), which is unlikely to be changed now.

<form>

Invalid without an ‘action’. If you don't intend to submit anywhere, and you don't need radio button name grouping, you could just completely omit the form element.

link
thanks, good answer. Though I need the form to serialize the fields for Ajax. I could code it manually, but with many forms it would be a pain. – sdfor Sep 3 '09 at 20:47
feedback

Here is the code that I used would use to solve the problem:

<form>
<input type="text" name="partid" id="partid"  />
<input type="text" name="StackOverflow1370021" value="Fix IE bug" style="{display:none}" />
</form>
link
feedback

It's not reloading the page as such, it's submitting the form.

However, in this example because you have no action attribute on the form it submits to itself which gives the impression of reloading the page.

Also, I can't repro the behaviour you describe. If I am in any text input in a form and I press Enter it submits the form, no matter where in the form the input is located or how many inputs there are.

You might want to try this out some more in different browsers.

link
You're right I was not using the right words. It is submitting the form and since I don't specify an action it defaults to itself. I copied the exact HTML and ran it in IE8 and Firefox 3.5.2. An enter key in the first 2 fields, that are in the first form, do not submit the form, while an enter key in the third field does. – sdfor Sep 2 '09 at 21:01
feedback

Thanks to everyone who answered. It's an eye opener that a form with a single field acts differently then a form with many fields.

Another way to deal with this automatic submit, is to code a submit function that returns false.

In my case I had a button with an onclick event, so I moved the function call with the added return keyword to the onsubmit event. If the function called returns false the submit won't happen.

<form onsubmit="return ajaxMagic()">
<input type="text" name="partid" id="partid"  />
<input type="submit" value="Find Part" />
</form

function ajaxMagic() {
  ...
  return (false);
}
link
feedback

The solution I found for all of the browsers that I tested (IE, FF, Chrome, Safari, Opera) is that the first input type=submit element on the form has to be visible and has to be the first element in the form. I was able to use CSS placement to move the submit button to the bottom of the page and it did not affect the results!

<form id="form" action="/">

<input type="submit" value="ensures-the-enter-key-submits-the-form"
                      style="width:1px;height:1px;position:fixed;bottom:1px;"/>
<div id="header" class="header"></div>
<div id="feedbackMessages" class="feedbackPanel"></div>
     ...... lots of other input tags, etc...
</form>
link
feedback

Your Answer

 
or
required, but never shown

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