Open In App

HTML | <button> name Attribute

Last Updated : 21 Jul, 2022
Comments
Improve
Suggest changes
Like Article
Like
Report

The <button> name attribute is used to specify the name attribute of <button> element. It is used to reference the form-data after submitting the form or to reference the element in a JavaScript. 

Syntax:

<button name="name">

Attribute Values: It contains a single value name which describes the name of the <button> element. 

Example: 

html
<!DOCTYPE html> 
<html> 
    <head> 
        <title>
            HTML button name Attribute
        </title> 
    </head> 
    
    <body>
        <h1>GeeksforGeeks</h1>
        
        <h3>HTML button name Attribute</h3> 
        
        <form action="#" method="get">
            Username: <input type="text" name="uname">
            
            <br><br>
            
            Password: <input type="password" name="pwd">
            
            <br><br>
            
            <button type="submit" value="submit">
                Submit
            </button>
        </form>
    </body> 
</html>                    

Output:

  

Supported Browsers: The browser supported by HTML <button> name attribute are listed below:

  • Google Chrome
  • Edge 12
  • Internet Explorer
  • Firefox
  • Safari
  • Opera

Next Article

Similar Reads