The HTML <output> name Attribute is used to specify a name for a <output> element. It is used to reference the form-data after submitting the form or to reference the element in a JavaScript.
Syntax:
<Output name="text">
Attribute Values: It contains the value i.e name which specify the name for the <Output> element.
Example:
html
<!DOCTYPE html>
< html >
< head >
< title >
HTML Output name Attribute
</ title >
</ head >
< body >
< center >
< h1 style=" color = green ">
GeeksforGeeks
</ h1 >
< h2 >HTML Output name Attribute</ h2 >
< form oninput=" sumresult.value = parseInt (A.value)
+ parseInt(B.value) + parseInt(C.value)">
< input type="number"
name="A"
value="50" /> +
< input type="range"
name="B"
value="0" /> +
< input type="number"
name="C"
value="30" />
< br > Result:
< output name="sumresult"></ output >
</ form >
</ center >
</ body >
</ html >
|
Output:
Supported Browsers:
- Google Chrome 10.0
- Firefox 4.0
- Edge 18.0
- Opera 11.0
- Apple Safari 7.0
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!
Last Updated :
19 Jul, 2022
Like Article
Save Article