js get name attribute value code example
Example 1: javascript get attribute
//HTML
//
var elem = document.getElementById("elem");
elem.getAttribute("data-id"); // "4hJ3s"
Example 2: js get element by attribute
//find first element with "someAttr" attribute
document.querySelector('[someAttr]')