Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

JavaScript JavaScript and the DOM (Retiring) Making Changes to the DOM Styling Elements

Regular html attributes VS data attributes: What's the difference?

I see I can add a behavior to a HTML element by targeting that element's attribute E.g.

<p>What is Superman's real name?</p>
<button answer="incorrect">Jim Kent</button>
<button answer="correct">Clark Kent</button>

But I can also use a data attribute. E.g.

<button data-answer="incorrect">Jim Kent</button>
<button data-answer="correct">Clark Kent</button>

What is the advantage of using a data-attribute over a regular attribute? Is there any additional functionality available? I don't get why adding data- to the attribute name makes a difference...

Thanks in advance!

1 Answer

Steven Parker
Steven Parker
229,644 Points

The "data-..." attributes can be easily accessed in JavaScript using the "dataset" property.

For more details, see the MDN page on Using data attributes.