Answers for "this.getattribute javascript"

15

javascript get attribute

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

var elem = document.getElementById("elem");
elem.getAttribute("data-id"); // "4hJ3s"
Posted by: Guest on May-20-2020
2

js getattribute

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

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

getattribute javascript

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

console.log(link.getAttribute('href'));
Posted by: Guest on January-01-1970

Code answers related to "Javascript"

Browse Popular Code Answers by Language