<input type="submit" /> Description:
The <input type="submit" /> tag submits data to the form.
<input type="submit" /> Web Browser Support:
- Netscape 2, 3, 4, 6, 7
- Mozilla 1
- Firefox 1
- Internet Explorer 2, 3, 4, 5, 6
- Opera 3, 4, 5, 6, 7, 8
- Safari 1
- WebTV / MSNTV
- AvantGo Palm OS
- AvantGo Windows CE
- HTML 3.2, 4.0
- XHTML 1.0
XHTML Forms Module XHTML Intrinsic Events Module
<input type="submit" /> Attributes:
<input type="submit" /> Usage:
- standard submit button:
<form>
<input type="submit" />
</form> - submit field with changed wording:
<form>
<input type="submit" value="Submit Now" />
</form>
- submit button with some styles added:
<form>
<input type="submit" value="Click Me" style="background-color:#cc0000; color: #ffffff;" />
</form>
<input type="submit" /> Special Notes:
- The default wording on a submit button is "Submit Query". Since this is a bit awkward in standard English, it's a good idea to change it.
- Without a submit button, your form cannot be sent to the server.
More <input type="submit" /> Information:

