Open In App

HTML | DOM Link type Property

Last Updated : 22 Aug, 2022
Improve
Improve
Like Article
Like
Save
Share
Report

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: 

  • It returns the type property.
linkObject.type
  • It is used to set the type property.
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. 

HTML




<!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:

  • Google Chrome
  • Mozilla Firefox
  • Edge
  • Safari
  • Opera

Like Article
Suggest improvement
Share your thoughts in the comments

Similar Reads