get element data attribute javascript code example
Example 1: javascript get attribute
var elem = document.getElementById("elem");
elem.getAttribute("data-id");
Example 2: js get data attribute
var element = document.querySelector('.element');
var dataAttribute = element.getAttribute('data-name');
console.log(dataAttribute);
Example 3: javascript get data-id attribute
var element = document.getElementById('myDivID');
var dataID = element.getAttribute('data-id');
var dataID = $('myDivID').data('data-id');
Example 4: get data attribute javascript
const el = document.querySelector('#element')
el.dataset.name
Example 5: javascript get data attribute value
const article = document.querySelector('#electric-cars');
article.dataset.columns
article.dataset.indexNumber
article.dataset.parent