document.charset
In this chapter you will learn:
Get and set char set
document.charset
gets or sets the document character set encoding.
<!DOCTYPE HTML> <!--from j a va 2 s . c om-->
<html>
<body>
<script>
document.writeln(document.charset);
</script>
</body>
</html>
Next chapter...
What you will learn in the next chapter:
Home » Javascript Tutorial » Document