HTML DOM charset Property
Complete Link Object Reference
Definition and Usage
The charset property sets or returns the character encoding of the target
URL.
Syntax
linkObject.charset=character-encoding
|
Example
The following example sets the character encoding of the target URL:
<html>
<head>
<link rel="stylesheet" type="text/css" id="style1"
href="try_dom_link.css" />
</head>
<body>
<script type="text/javascript">
x=document.getElementById("style1");
x.charset="ISO-8859-1";
document.write("Charset=" + x.charset);
</script>
</body>
</html>
|
Try-It-Yourself Demos
Set the character encoding of a <link> element
Complete Link Object Reference
|
|
|
See why there are 20,000+ Ektron integrations worldwide.
Request an INSTANT DEMO or download a FREE TRIAL today. |
|
|
|