<input type="button" /> Description:
The <input type="button" /> tag uploads files to the Web server through the form.
<input type="button" /> Web Browser Support:
- Netscape 4, 6, 7
- Mozilla 1
- Firefox 1
- Internet Explorer 4, 5, 6
- Opera 3, 4, 5, 6, 7, 8
- Safari 1
- WebTV / MSNTV
- AvantGo Palm OS
- AvantGo Windows CE
- HTML 4.0
- XHTML 1.0
XHTML Forms Module XHTML Intrinsic Events Module
<input type="button" /> Attributes:
<input type="button" /> Usage:
- standard input button:
<form>
<input type="button" name="button1" value="click me" />
</form>
- styled input button:
<form>
<input type="button" name="button1" value="click me" style="background-color: #cc0000; color: #ffffff;" />
<input type="button" /> Special Notes:
- This button will not submit the form to the server by itself. You need to use JavaScript to cause an action.
- I would recommend using the <button> element rather than this element, as the <button> element is more flexible.
More <input type="button" /> Information:

