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
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 :
21 Jul, 2022
Like Article
Save Article