vote up 0 vote down star

I'm trying to have a clear button inside a html form, but it appears to automatically submit. How do I work around this?

I feel like I am missing something obvious.

Thank you, I have a working answer ... so now I'm just curious. Is there any reason to use the button element in a form, or any reason not to?

flag
It's usually useful if you post some snippet of code to be able to show anyone interested in helping you out exactly where you are going wrong – matt b Jun 17 at 13:38
yea, it really is something obvious :) – harshath.jr Jun 17 at 13:39
The main reason to use the button element is that it can contain arbitrary markup; just make sure you specify the type attribute appropriately. For example, the following can only be achieved with <button>: <button type="button"> <p><img src="rabbit.png" alt="rabbit"></p> <p>This button has a picture of a rabbit, and <b>bold text</b> on part of it's contents.</p> <p>It also contains multiple paragraphs.</p> </button> – NickFitz Jun 17 at 14:05

4 Answers

vote up 5 vote down check

You have to make the type of the input element "reset", not "submit".

edit: fixed .. reset, not clear

link|flag
2  
You mean "Reset", not clear – Ken Pespisa Jun 17 at 13:39
vote up 0 vote down

try this, instead of submit button :

<input type="reset" value="Clear Form">
link|flag
vote up 1 vote down
<input type="reset" name="reset" value="Reset Form">
link|flag
vote up 1 vote down

Try this:

<input type="reset" name="reset" value="Clear"/>
link|flag

Your Answer

Get an OpenID
or

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