up vote 34 down vote favorite
9
share [g+] share [fb]

There is no such thing as a stupid question, so here we go: What is the difference between between <input type='button' /> and <input type='submit' />?

link|improve this question

feedback

4 Answers

up vote 41 down vote accepted

<input type="button" /> buttons will not submit a form - they don't do anything by default. They're generally used in conjunction with JavaScript as part of an AJAX application.

<input type="submit"> buttons will submit the form they are in when the user clicks on them, unless you specifiy otherwise with JavaScript.

link|improve this answer
3  
Also browsers can capture the "Enter" keypress on a form and submit the form automatically if there is a submit button, but not otherwise. – Mr. Shiny and New 安宇 Nov 14 '08 at 14:49
They also do that if you have a type="image", which can be used to trigger a form-submission when clicked on. – jishi Nov 14 '08 at 14:53
2  
Mr. Shiny and New: Forms can be submitted via the enter key without any buttons. It's enough to have focus on a text input, for instance. – Lasar Nov 14 '08 at 15:03
1  
You can use BUTTON elements, although (surprise surprise) there are a few issues with them when using Everyone's Favourite Browser (IE). Worth knowing about though. – Phill Sacre Nov 14 '08 at 15:27
1  
This is obviously extremely old but I feel the need to give my 2 cents as I feel it is a large downfall of using button types... the form onsubmit event is NOT fired from javascript submissions, leading to potential maintenance nightmares. – happytime harry Nov 19 '10 at 17:19
show 1 more comment
feedback

A 'button' is just that, a button, to which you can add additional functionality using Javascript. A 'submit' input type has the default functionality of submitting the form it's placed in (though, of course, you can still add additional functionality using Javascript).

link|improve this answer
feedback

The question here is maybe more relevant if you asked, "what is the difference between a submit-button and a <button>label</button>", since a <button> also submits the form by default.

link|improve this answer
1  
The HTML <button> element doesn't submit a form on its own, mate... – Hexagon Theory Jan 27 '09 at 5:25
Actually, it does in some browsers. Having a form, without a submit-button but instead a <button> will apply submit-functionality to it. Firefox has this behaviour. – jishi Jan 28 '09 at 10:38
When reading W3C spec this is actually default behaviour, since buttons has a type-attribute which defaults to "submit". – jishi Jan 28 '09 at 10:41
feedback

Button won't submit form on its own.It is a simple button which is used to perform some operation by using javascript whereas Submit is a kind of button which by default submit the form whenever user clicks on submit button.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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