A custom attribute is any user-defined attribute, just like other primitive HTML element attributes. You can add custom attributes to any HTML element. For example, suppose you wanted to add the displayName attribute to the following HTML text box:
<input type="text" id="txtBox" />
There are two ways to do this:
- You can add displayName when you write the HTML element tag in the web page:
- You can use the DOM:
document.all.txtBox.displayName = "displayNAME1";
As you can see, you access custom attributes the same way you’d access any built-in attributes. For example:
document.getElementById("txtBox").getAttribute("displayName");