Ask Your Question
2

How can JavaScript be used to retrieve the values of HTML data attributes?

asked 2023-06-08 05:32:12 +0000

scrum gravatar image

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-06-08 05:38:02 +0000

lakamha gravatar image

JavaScript can be used to retrieve the values of HTML data attributes using the getAttribute() method.

For example, if you have an HTML element with the data attribute data-id and you want to retrieve its value, you can do the following:

const element = document.querySelector('#myElement');
const dataId = element.getAttribute('data-id');
console.log(dataId); // logs the data-id value

In this code example, we first select the HTML element with the ID myElement using the querySelector() method. Then, we use the getAttribute() method to retrieve the value of its data-id attribute and store it in a variable called dataId. Finally, we log the value to the console.

Note that data attributes can also be accessed using the dataset property, which returns an object containing all the data attributes and their values. For example:

const element = document.querySelector('#myElement');
console.log(element.dataset.id); // logs the data-id value
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account. This space is reserved only for answers. If you would like to engage in a discussion, please instead post a comment under the question or an answer that you would like to discuss

Add Answer


Question Tools

Stats

Asked: 2023-06-08 05:32:12 +0000

Seen: 14 times

Last updated: Jun 08 '23