How to search the value of the href attribute of a link in JavaScript?


To get the value of the href attribute of a link in JavaScript, use the href property. It gives you the URL of the linked document in JavaScript.

Example

You can try to run the following code to get the value of the href attribute of a link.

<!DOCTYPE html>
<html>
   <body>
      <p><a id="anchorid" href="https://www.qries.com/">Qries</a></p>
      <script>
         var myLink = document.getElementById("anchorid").href;
         document.write("Link: "+myLink);
      </script>
   </body>
</html>

Vikyath Ram
Vikyath Ram

A born rival

Updated on: 18-Nov-2023

1K+ Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements