Two buttons with equal names, that submit different values when clicked.
The value attribute specifies the initial value for a <button> in an HTML form.
Note: In a form, the button and its value is only submitted if the button itself was used to submit the form.

Note: If you use the <button> element in an HTML form, Internet Explorer, prior version 8, will submit the text between the <button> and </button> tags, while the other browsers will submit the content of the value attribute.
<button value="value">
| Value | Description |
|---|---|
| value | The initial value of the button |
<form action="/action_page.php" method="get">
Choose your favorite subject:
<button name="subject" type="submit" value="fav_HTML">HTML</button>
<button name="subject" type="submit" value="fav_CSS">CSS</button>
</form>
Type: | html |
Category: | Web Tutorial |
Sub Category: | HTML Tag |
Uploaded by: | Admin |