Path: blob/main/files/en-us/glossary/attribute/index.md
6538 views
------An attribute extends an HTML or XML {{Glossary("element")}}, changing its behavior or providing metadata.
An attribute always has the form name="value" (the attribute's identifier followed by its associated value).
You may see attributes without the equals sign or a value. That is a shorthand for providing the empty string in HTML, or the attribute's name in XML.
Reflection of an attribute
Attributes may be reflected into a particular property of the specific interface. It means that the value of the attribute can be read by accessing the property, and can be modified by setting the property to a different value.
For example, the placeholder below is reflected into {{domxref("HTMLInputElement.placeholder")}}.
Considering the following HTML:
We can check the reflection between {{domxref("HTMLInputElement.placeholder")}} and the attribute using:
See also
Information about HTML's global attributes