get by attribute javascript code example

Example 1: javascript get attribute

//HTML
//<div id="elem" data-id="4hJ3s"></div>

var elem = document.getElementById("elem");
elem.getAttribute("data-id"); // "4hJ3s"

Example 2: javascript element read attribute

document.getElementById('id1').getAttribute('attribute');

Example 3: how to get element by attribute value in javascript

document.querySelectorAll('[data-foo="value"]');

Example 4: js get element by attribute

//find first element with "someAttr" attribute
document.querySelector('[someAttr]')

Example 5: js get element by attribute

//find all elements with "someAttr" attribute
document.querySelectorAll('[someAttr]')

Tags:

Misc Example