Custom Data Attributes
๐ Covered in this chapter:
data-* Attributes Standard ยท Why Data Attributes are Used ยท Reading via element.dataset ยท Storing IDs & UI State ยท CSS Attribute Selectors ยท Data Attributes vs Classes
Welcome to Phase 11 (Chapter 29): Custom Data Attributes! Per WHATWG standards,
data-* attributes store application-specific custom data or UI state directly on HTML elements.
1Data Attribute Syntax
HTML + JS โ dataset Property
โถ Run in HTML Editor
<button data-course-id="python" data-status="active" onclick="alert(this.dataset.courseId)">
Open Course
</button>