getattribute value javascript code example

Example 1: javascript get attribute

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

Example 2: js getattribute

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

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

Example 3: getattribute javascript

let attribute = element.getAttribute(attributeName);

Example 4: 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:

Misc Example