how to access a html atribute value in javascript code example
Example 1: javascript get attribute
//HTML
//
var elem = document.getElementById("elem");
elem.getAttribute("data-id"); // "4hJ3s"
Example 2: javascript element read attribute
document.getElementById('id1').getAttribute('attribute');