how to select element by attribute in javascript code example
Example 1: javascript select element with attribute
document.querySelectorAll('[attrname="value"]');
Example 2: javascript get attribute
var elem = document.getElementById("elem");
elem.getAttribute("data-id");
Example 3: how to get element by attribute value in javascript
document.querySelectorAll('[data-foo="value"]');
Example 4: js get element by attribute
document.querySelector('[someAttr]')
Example 5: js get element by attribute
document.querySelectorAll('[someAttr]')