HTML DOM Link type Property


The Link type property sets/returns the type of a linked document.

Syntax

Following is the syntax −

  • Returning type attribute value
linkObject.type
  • Setting type to a valid value
linkObject.type = value

NOTE  − valid values include "text/javascript", "text/css", "image/gif", etc.

Example

Let us see an example for Link type property −

<!DOCTYPE html>
<html>
<head>
<title>Link type</title>
<link id="extStyle" rel="stylesheet" href="style.css" type="myStyle">
</head>
<body>
<form>
<fieldset>
<legend>Link-type</legend>
<input type="button" value="Correct Type" onclick="correctType()">
<div id="divDisplay"></div>
</fieldset>
</form>
<script>
   var divDisplay = document.getElementById("divDisplay");
   var extStyle = document.getElementById("extStyle");
   divDisplay.textContent = 'The linked document type: '+extStyle.type+' is not compatible';
   function correctType(){
      extStyle.type = 'text/css';
      divDisplay.textContent = 'Congrats! The linked document type: '+extStyle.type+' is compatible';
   }
</script>
</body>
</html>

In the above example ‘style.css’ contains −

form {
   width:70%;
   margin: 0 auto;
   text-align: center;
}
* {
   padding: 2px;
   margin:5px;
}
input[type="button"] {
   border-radius: 10px;
}

Output

This will produce the following output −

Before clicking ‘Correct Type’ button −

After clicking ‘Correct Type’ button −

Updated on: 30-Jul-2019

74 Views

Kickstart Your Career

Get certified by completing the course

Get Started
Advertisements