up vote 0 down vote favorite
share [g+] share [fb]

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?

link|improve this question

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 '09 at 13:38
yea, it really is something obvious :) – jrharshath Jun 17 '09 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 '09 at 14:05
feedback

4 Answers

up vote 5 down vote accepted

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

edit: fixed .. reset, not clear

link|improve this answer
2  
You mean "Reset", not clear – Ken Pespisa Jun 17 '09 at 13:39
feedback

Try this:

<input type="reset" name="reset" value="Clear"/>
link|improve this answer
feedback
<input type="reset" name="reset" value="Reset Form">
link|improve this answer
feedback

try this, instead of submit button :

<input type="reset" value="Clear Form">
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.