data attribute javscript code example
Example 1: get data attribute javascript
// <div id="element" data-name="john"></div>
const el = document.querySelector('#element')
el.dataset.name // 'john'
Example 2: html data attribute
<a data-color="blue">
This tag contains a user-defined color attribute
</a>
<div data-link="https://github.com/k-vernooy">
This tag contains a data attribute with a link
</div>