There is no such thing as a stupid question, so here we go: What is the difference between <input type='button' /> and <input type='submit' />?
|
|
|||||||||||||||||||
|
|
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). |
|||
|
|
|
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. |
|||
|
|

<button>label</button>", since a<button>also submits the form by default. – jishi Nov 14 '08 at 14:54