javascript getattribute code example
Example 1: javascript get attribute
var elem = document.getElementById("elem");
elem.getAttribute("data-id");
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 getattribute
const link = document.querySelector('a');
console.log(link.getAttribute('href'));
Example 5: getattribute javascript
let attribute = element.getAttribute(attributeName);
Example 6: getattribute javascript
<!-- example div in an html DOC -->
<div id="div1">Hi Champ!</div>
const div1 = document.getElementById('div1');
const exampleAttr= div1.getAttribute('id');
const align = div1.getAttribute('align')