Please note, this is a STATIC archive of website www.w3schools.com from 05 May 2020, cach3.com does not collect or store any user information, there is no "phishing" involved.
THE WORLD'S LARGEST WEB DEVELOPER SITE

HTML <output> name Attribute

❮ HTML <output> tag

Example

Perform a calculation and show the result in an <output> element:

<form oninput="x.value=parseInt(a.value)+parseInt(b.value)">0
  <input type="range" id="a" value="50">100
  +<input type="number" id="b" value="50">
  =<output name="x" for="a b"></output>
</form>
Try it Yourself »

Definition and Usage

The name attribute specifies the name of an <output> element.

The name attribute is used to reference form data after it has been submitted, or to reference the element in a JavaScript.


Browser Support

The numbers in the table specify the first browser version that fully supports the attribute.

Attribute
name 10.0 13.0  4.0 7.0 11.5

Syntax

<output name="name">

Attribute Values

Value Description
name Specifies the name of the <output> element

❮ HTML <output> tag