How to get the value of the type attribute of a link in JavaScript?


To get the value of the type attribute of a link in JavaScript, use the type property. The type attribute is used to tell that the document is html (text/html) or css (text/css), etc.

Example

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

Live Demo

<!DOCTYPE html>
<html>
   <body>
      <p><a id="anchorid" type="text/html" target= "_blank" href="https://www.qries.com/">Qries</a></p>
      <script>
         var myVal = document.getElementById("anchorid").type;
         document.write("Value of type attribute: "+myVal);
      </script>
   </body>
</html>

Updated on: 20-May-2020

383 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements