<!DOCTYPE html>
<html>
<body>
Read about the <a id="myAnchor" href="dom_obj_attributes.asp.html" 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() {
var elmnt = document.getElementById("myAnchor");
var attr = elmnt.getAttributeNode("target").value;
document.getElementById("demo").innerHTML = attr;
}
</script>
</body>
</html>