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
Whether you're preparing for your first job interview or aiming to upskill in this ever-evolving tech landscape,
GeeksforGeeks Courses are your key to success. We provide top-quality content at affordable prices, all geared towards accelerating your growth in a time-bound manner. Join the millions we've already empowered, and we're here to do the same for you. Don't miss out -
check it out now!