<!DOCTYPE html>
<html>
<body>
<h1>The Element Object</h1>
<h2>The getAttributeNode() Method</h2>
Read about the <a id="myAnchor" href="dom_obj_attributes.asp" target="_blank">Attr object</a>.
<p>Click the button to display the value of the target attribute node of the link above.</p>
<button onclick="myFunction()">Try it</button>
<p id="demo"></p>
<script>
function myFunction() {
const element = document.getElementById("myAnchor");
let text = element.getAttributeNode("target").value;
document.getElementById("demo").innerHTML = text;
}
</script>
</body>
</html>