Código:
El problema está en que cuando el foco está en edt1 y se presiona enter, en lugar de ejecutarse btn1, se presiona btn2.<form ...> <fieldset> <input name="edt1" ... /> <button name="btn1" type="submit">Fieldset 1</button> </fieldset> <fieldset> <input name="edt2" ... /> <button name="btn2" type="submit">Fieldset 2</button> </fieldset> </form>
El comportamiento debería ser:
Foco en edtN, luego un Enter --> acción capturada por btnN
Y no por el último botón del formulario.
Es posible conseguir ésto sin usar javascript?