element by attribute javascript code example
Example 1: how to get element by attribute value in javascript
document.querySelectorAll('[data-foo="value"]');
Example 2: js get element by attribute
//find first element with "someAttr" attribute
document.querySelector('[someAttr]')