how to access data-id in javascript code example
Example 1: javascript get data-id attribute
var element = document.getElementById('myDivID');
var dataID = element.getAttribute('data-id');
var dataID = $('myDivID').data('data-id');
Example 2: accèder data-id javascript
<article
id="voitureelectrique"
data-columns="3"
data-index-number="12314"
data-parent="voitures">
...
</article>
var article = document.getElementById('voitureelectrique');
article.dataset.columns
article.dataset.indexNumber
article.dataset.parent
Example 3: data id tag
var dataId = $(this).attr("data-id");
Example 4: set data-id javascript
var d = document.getElementById("test");
d.setAttribute('data-id' , 'Next');