Link charset Property
Link Object
Definition and Usage
The charset property sets or returns the character encoding of a linked
document.
Syntax
Set the charset property:
linkObject.charset="character-set"
Return the charset property:
Browser Support

The charset property is supported in all major browsers.
Example
Example
Display the character encoding of the linked document:
<html>
<head>
<link id="link1" href="domoarigato.htm" charset="ISO-2022-JP">
<script>
function displayResult()
{
var x=document.getElementById("link1").charset;
alert(x);
}
</script>
</head>
<body>
<button type="button" onclick="displayResult()">Display charset</button>
</body>
</html>
Try it yourself »
Link Object
Thank You For Helping Us!
Your message has been sent to W3Schools.
Close [X]