Should I use the name attribute only for form controls?
Is it deprecated today in HTML5?
I noticed similar questions are outdated, so I'm a little confused.
Should I use the name attribute only for form controls?
Is it deprecated today in HTML5?
I noticed similar questions are outdated, so I'm a little confused.
Should I use the
nameattribute only for form controls?
No. It is only on <a> elements that it is obsolete (and replaced with id on any element).
The attributes index in the HTML5 spec shows where it should still be used.
Some uses of it which were never standard should be replaced with class.
Is it deprecated today in HTML5?
HTML5 doesn't use the term "deprecated". It describes it as obsolete.
I checked Mozilla Developer Network (MDN) and found this:
name
<button>, <form>, <fieldset>, <iframe>, <input>, <keygen>, <object>, <output>, <select>, <textarea>, <map>, <meta>, <param>
Name of the element. For example used by the server to identify the fields in form submits.
So you should use this attribute only on these elements. Any other element with a name attribute is not correct. For more info about what attributes exists and where/who/why to use it check the full documentation: