Open In App

HTML | DOM Link type Property

The DOM Link type Property is used to set or return the content type or MIME type of the linked Document. For eg. text/css”, “text/javascript”, “image/gif”, etc. 

Syntax: 



linkObject.type
linkObject.type = MIME-type

Property Values: It contains the value i.e MIME-type which is used to specify the MIME-type of the linked Document. 

Return Value: It returns a string value which represents the content type of the linked Document. 



Example: This Example returns the type Property. 




<!DOCTYPE html>
<html>
<head>
    <link id="linkid"
          rel="stylesheet"
          type="text/css"
          href="styles.css">
</head>
 
<body style="text-align:center;">
    <h1>GeeksForGeeks</h1>
    <h2>DOM Link type Property</h2>
    <button onclick="gfg()">Get URL
    </button>
    <p id="pid"
       style="font-size:25px;
              color:green;">
      </p>
    <script>
        function gfg() {
 
            // return Link type Property
            var NEW = document.getElementById(
                "linkid").type;
            document.getElementById(
                "pid").innerHTML = NEW;
        }
    </script>
</body>
</html>

Output: 

Before Clicking On Button:

  

After Clicking On Button: 

 

Supported Browsers:

Article Tags :