HTMLElement: dataset property
{{APIRef("HTML DOM")}}
The dataset
read-only property
of the {{DOMxRef("HTMLElement")}}
interface provides read/write access to custom data attributes
(data-*
) on elements. It exposes a map of strings
({{domxref("DOMStringMap")}}
) with an entry for each data-*
attribute.
[!NOTE] The
dataset
property itself can be read, but not directly written. Instead, all writes must be to the individual properties within thedataset
, which in turn represent the data attributes.
An HTML data-*
attribute and its corresponding DOM
dataset.property
modify their shared name according to where
they are read or written:
- In HTML
- : The attribute name begins with
data-
. It can contain only letters, numbers, dashes (-
), periods (.
), colons (:
), and underscores (_
). Any{{Glossary("ASCII")}}
capital letters (A
toZ
) are converted to lowercase.
- : The attribute name begins with
- In JavaScript
- : The property name of a custom data attribute is the same as the HTML attribute
without the
data-
prefix. Single dashes (-
) are removed, and the next ASCII character after a removed dash is capitalized to form the property’s camel-cased name.
- : The property name of a custom data attribute is the same as the HTML attribute
without the
Details and examples of converting between the HTML and JavaScript forms is described in more detail in the next section.
In addition to the information below, you’ll find a how-to guide for using HTML data attributes in our article Using data attributes.
Name conversion
-
dash-style
tocamelCase
conversion-
: A custom data attribute name is transformed to a key for the
{{domxref("DOMStringMap") }}
entry by the following:- Lowercase all ASCII capital letters (
A
toZ
); - Remove the prefix
data-
(including the dash); - For any dash (
U+002D
) followed by an ASCII lowercase lettera
toz
, remove the dash and uppercase the letter; - Other characters (including other dashes) are left unchanged.
- Lowercase all ASCII capital letters (
-
-
camelCase
todash-style
conversion-
: The opposite transformation, which maps a key to an attribute name, uses the following:
- Restriction: Before transformation, a dash must not be
immediately followed by an ASCII lowercase letter
a
toz
; - Add the
data-
prefix; - Add a dash before any ASCII uppercase letter
A
toZ
, then lowercase the letter; - Other characters are left unchanged.
- Restriction: Before transformation, a dash must not be
immediately followed by an ASCII lowercase letter
-
For example, a data-abc-def
attribute corresponds to
dataset.abcDef
.
Accessing values
- Attributes can be set and read by the camelCase name/key as an object property of
the dataset:
element.dataset.keyname
. - Attributes can also be set and read using bracket syntax:
element.dataset['keyname']
. - The
in
operator can check if a given attribute exists:'keyname' in element.dataset
. Note that this will walk the prototype chain ofdataset
and may be unsafe if you have external code that may pollute the prototype chain. Several alternatives exist, such as{{jsxref("Object/hasOwn", "Object.hasOwn(element.dataset, 'keyname')")}}
, or just checking ifelement.dataset.keyname !== undefined
.
Setting values
-
When the attribute is set, its value is always converted to a string. For example:
element.dataset.example = null
is converted intodata-example="null"
. -
To remove an attribute, you can use the
delete
operator:delete element.dataset.keyname
.
Value
A {{domxref("DOMStringMap")}}
.
Examples
<div id="user" data-id="1234567890" data-user="carinaanand" data-date-of-birth>
Carina Anand
</div>
const el = document.querySelector("#user");
// el.id === 'user'
// el.dataset.id === '1234567890'
// el.dataset.user === 'carinaanand'
// el.dataset.dateOfBirth === ''
// set a data attribute
el.dataset.dateOfBirth = "1960-10-03";
// Result on JS: el.dataset.dateOfBirth === '1960-10-03'
// Result on HTML: <div id="user" data-id="1234567890" data-user="carinaanand" data-date-of-birth="1960-10-03">Carina Anand</div>
delete el.dataset.dateOfBirth;
// Result on JS: el.dataset.dateOfBirth === undefined
// Result on HTML: <div id="user" data-id="1234567890" data-user="carinaanand">Carina Anand</div>
if (el.dataset.someDataAttr === undefined) {
el.dataset.someDataAttr = "mydata";
// Result on JS: 'someDataAttr' in el.dataset === true
// Result on HTML: <div id="user" data-id="1234567890" data-user="carinaanand" data-some-data-attr="mydata">Carina Anand</div>
}
Specifications
{{Specifications}}
Browser compatibility
{{Compat}}
See also
- The HTML
data-*
class of global attributes - Using data attributes
{{DOMxRef("Element.getAttribute()")}}
and{{DOMxRef("Element.setAttribute()")}}