+ 2
What is the use of "name" attribute in HTML5 <input>??
Please tell me the use of this attribute..
4 Answers
+ 1
The name attribute can be used to reference the element in Javascript. You can fetch the value entered by user in the input field using the 'Name' attribute.
https://stackoverflow.com/questions/26061651/what-is-the-purpose-of-the-html-name-attribute
https://www.w3schools.com/tags/att_name.asp
+ 4
The name attribute specifies the name of an <input> element. The name attribute is used to reference elements in a JavaScript.
+ 1
Chetali Shah thanks for answer!
Can u tell me the use if list attribute?
+ 1