I have a textbox that posts data with js keyboard enter event. Is there any practical reason not to do this and instead create a submit button?
+2
A:
Many people will expect to see a Submit button to click with the mouse. Some people are mouse users, others are keyboard users - why not provide both methods?
RichieHindle
2009-08-11 22:27:55
A:
If javascript is disabled in the browser, the form won't be able to be submitted without a submit button.
Marve
2009-08-11 22:29:24
You can hit enter in a form with javascript disabled, and it will be submitted, at least in firefox 3.5 and ie8...
x3ro
2009-08-11 22:34:44
Interesting. Good to know.
Marve
2009-08-11 22:35:34