HTML <output> with name Attribute

You are Here:

HTML <output> with name Attribute

The name attribute specifies the name of the element.

The name attribute is used to identify this <output> during form submission.

Example

HTML Online Editor
<!DOCTYPE html> <html> <body> <p>How much you like us?</p> <form oninput="result.value=parseInt(a.value)+parseInt(b.value)"> <input type="range" name="b" value="50"> + <input type="number" name="a" value="100"> = <output name="result">150</output>%<br> <input type="button" onclick="myFunction()" value="Check"> </form> <script> var x = document.getElementsByName("result")[0]; function myFunction(){ var getResult = x.value; alert("You like us "+getResult+"% Thank you!!!") } </script> </body> </html>

Attribute Value

ValueExplanation
nameSpecifies the name of the element.

Reminder

Hi Developers, we almost covered 99.5% of HTML Tutorials with examples for quick and easy learning.

We are working to cover every Single Concept in HTML.

Please do google search for:

Join Our Channel

Join our telegram channel to get an instant update on depreciation and new features on HTML, CSS, JavaScript, jQuery, Node.js, PHP and Python.

This channel is primarily useful for Full Stack Web Developer.

Share this Page

Meet the Author