DEV Community

Abiola Fasanya
Abiola Fasanya

Posted on

Custom Data Attributes in HTML: A Guide to `data-*`

Custom Data Attributes in HTML: A Guide to data-*

When developing web applications, developers often need to add custom data to elements. For example, they may want to associate data with an element for later use in JavaScript or CSS. HTML provides a way to add custom data to elements using attributes that start with "data-". These attributes are called data-* attributes.

What are data-* attributes?

data-* attributes are custom attributes that can be added to HTML elements to store custom data. The "data-" prefix is followed by any name you want to give the attribute. For example, if you want to store a value for a user's name, you can add an attribute like this:

<div data-name="John"></div>
Enter fullscreen mode Exit fullscreen mode

The attribute data-name is not a standard HTML attribute, but it's still valid HTML because the "data-" prefix indicates that it's a custom data attribute.

Why use data-* attributes?

data-* attributes allow developers to add custom data to elements that can be accessed and manipulated using JavaScript or CSS. They provide a way to store data that isn't visible to users but can be used by developers to perform specific actions or apply styling based on the attribute value.

Some common use cases for data-* attributes include:

  • Storing data for JavaScript to access later on.
  • Providing metadata about an element that's needed for certain functionality (e.g., a date for a calendar widget).
  • Selecting elements for automated testing frameworks like Jest or React Testing Library.
  • Applying different themes or styles to an element based on its data-* attribute value.

Naming conventions for data-* attributes

It's important to follow naming conventions when creating data-* attributes to avoid naming conflicts with other HTML attributes or frameworks. Here are some guidelines to keep in mind:

  • Attribute names must begin with "data-" followed by any name you want to give the attribute.
  • Attribute names should be lowercase and use hyphen-case (i.e., words separated by hyphens, not underscores or camelCase).
  • Attribute names should be descriptive to avoid naming conflicts with other libraries.

For example, here's an example of a data-* attribute that adheres to these guidelines:

<div data-user-id="123"></div>
Enter fullscreen mode Exit fullscreen mode

Accessing and manipulating data-* attributes

To access or manipulate data-* attributes using JavaScript, you can use the dataset property on the element. The dataset property is an object that contains all of the data-* attributes as properties, with the "data-" prefix removed. For example, if you have an element like this:

<div id="my-element" data-color="blue"></div>
Enter fullscreen mode Exit fullscreen mode

You can access the value of the data-color attribute like this:

const element = document.querySelector('#my-element');
console.log(element.dataset.color); // Outputs "blue"
Enter fullscreen mode Exit fullscreen mode

You can also set the value of data-* attributes using JavaScript:

const element = document.querySelector('#my-element');
element.dataset.color = 'red'; // Changes data-color to "red"
Enter fullscreen mode Exit fullscreen mode

In CSS, you can target data-* attributes using attribute selectors. For example:

[data-color="blue"] {
  background-color: blue;
}
Enter fullscreen mode Exit fullscreen mode

This will apply the background-color style to any element with a data-color attribute set to "blue".

Conclusion

data-* attributes provide a way to store custom data in HTML elements that can be accessed and manipulated using JavaScript or CSS. By following naming conventions and using descriptive names, developers can avoid naming conflicts and keep their code organized. data-* attributes are a powerful tool for front-end development that allow for greater flexibility and customization in web applications.

Top comments (0)