select an element by attribute code example
Example 1: javascript select element with attribute
document.querySelectorAll('[attrname="value"]');
Example 2: js get element by attribute
//find all elements with "someAttr" attribute
document.querySelectorAll('[someAttr]')