DOMDocument get element by attribute 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 all elements with "someAttr" attribute
document.querySelectorAll('[someAttr]')