Answers for "getAttribute() js"

3

how to get element by attribute value in javascript

document.querySelectorAll('[data-foo="value"]');
Posted by: Guest on June-03-2020
2

js getattribute

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

console.log(link.getAttribute('href'));
Posted by: Guest on July-19-2020
1

getattribute javascript

let attribute = element.getAttribute(attributeName);
Posted by: Guest on February-28-2021
-1

getattribute javascript

<!-- example div in an html DOC -->
<div id="div1">Hi Champ!</div>

// in a console
const div1 = document.getElementById('div1');
//=> <div id="div1">Hi Champ!</div>

const exampleAttr= div1.getAttribute('id');
//=> "div1"

const align = div1.getAttribute('align')
//=> null
Posted by: Guest on February-28-2021

Code answers related to "Javascript"

Browse Popular Code Answers by Language