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