Computer >> Computer tutorials >  >> Programming >> HTML

HTML DOM Anchor href Property


The HTML DOM Anchor href property is used to set or return the href attribute. It returns the url of the link.

Following is the syntax to set the anchor href property−

anchorObj.href = URL

Above, URL is the url of the link. It can be an absolute, relative or anchor link with a hash.

Following is the syntax to return the anchor href property−

anchorObj.href

Let us now see an example to implement the DOM Anchor href property−

Example

<!DOCTYPE html>
<html>
<body>
<h1>Company</h1>
<p><a id="mylink" href="https://www.abc.com:6064/abc/def.html#myteam">Our Team</a></p>
<h2 id="myid"></h2>
<button onclick="display()">Display href Part</button>
<button onclick="display2()">Display Host Part</button>
<button onclick="display3()">Display Hostname</button>
<script>
function display() {
   var a = document.getElementById("mylink").href;
      document.getElementById("myid").innerHTML = a;
   }
   function display2() {
      var a = document.getElementById("mylink").host;
      document.getElementById("myid").innerHTML = a;
   }
   function display3() {
      var a = document.getElementById("mylink").hostname;
      document.getElementById("myid").innerHTML = a;
   }
</script>
</body>
</html>

Output

HTML DOM Anchor href Property

Click on the “Display href Part” to display the url −

HTML DOM Anchor href Property