HTML <output> form Attribute
HTML <output> tag
Example
An <output> element located outside a form (but still a part of the form):
<form action="demo_form.asp" id="numform"
oninput="x.value=parseInt(a.value)+parseInt(b.value)">0
<input type="range" id="a" name="a" value="50">100
+<input type="number" id="b" name="b" value="50">
<br><br>
<input type="submit">
</form>
<output form="numform" name="x" for="a b"></output>
Try it yourself »
Browser Support

The form attribute is not supported in any of the major browsers.
Definition and Usage
The form attribute specifies one or more forms the <output> element belongs to.
Differences Between HTML 4.01 and HTML5
The <output> tag is new in HTML5.
Syntax
Attribute Values
| Value |
Description |
| form_id |
Specifies a space-separated list of id's to one or more forms the <output> element belongs to |
HTML <output> tag
Thank You For Helping Us!
Your message has been sent to W3Schools.
Close [X]