Search Value of Type Attribute of a Link in JavaScript



To search the value of the type attribute of a link in JavaScript, use the type property. You can try to run the following code to get the value of type attribute.

Example

<!DOCTYPE html>
<html>
   <body>
      <p><a id = "qriesid" href = "https://qries.com/" type="text/html" >Qries</a></p>
      <script>
         var x = document.getElementById("qriesid").type;
         document.write("Value of the type attribute: "+x);
      </script>
   </body>
</html>
Updated on: 2020-05-23T11:22:09+05:30

175 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements