Get Value of 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: 2020-05-20T09:35:04+05:30

512 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements