Hello Group,
Just wondering if others are experiencing this issue. provided below is a simple form, without a submit button. My understanding of HTML states that when ENTER is pressed, the form should submit by default. I tried this code in FF and IE and it does not submit by default as long as TWO (2) text fields are present.
Is anyone else experiencing this issue?
FF - 3.5.30729
IE - 8.0.6001.18702
simple HTML form ...
===========
<form>
<select name="testing">
<option value="1">testing</option>
</select>
<input type="text" name="text_01" value="">
<input type="text" name="text_02" value="">
</form>
===========
E Net Arch