Last Updated : 21 Jul, 2022
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:
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4