getattribute code example

Example 1: javascript get attribute

//HTML
//
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 getattribute

const link = document.querySelector('a');

console.log(link.getAttribute('href'));

Example 5: getattribute javascript

let attribute = element.getAttribute(attributeName);

Example 6: getattribute javascript


Hi Champ!
// in a console const div1 = document.getElementById('div1'); //=>
Hi Champ!
const exampleAttr= div1.getAttribute('id'); //=> "div1" const align = div1.getAttribute('align') //=> null

Tags: