HTML5 Please

dataset

Safe to use with fallbackapi

elem.dataset is unsupported in Internet Explorer <= 10 and older mobile browsers.

Verdict
Safe to use
Category
JavaScript APIs
Browser support
Can I Use
Works in
IE11+

Should you use dataset in 2026?

Using data-* attributes will be totally fine in all browsers, but instead of using elem.dataset.foo just use elem.getAttribute('data-foo'). A polyfill is available if you want terser syntax.

Polyfills and fallbacks

HTML5 dataset support