Specify the default script language

Explanation

To specify the default script language used in a page, specify Content-Script-Type for http-equiv and script language for content. In JavaScript, specify text/javascript.

Sample Code [Output]

<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<meta http-equiv="content-type" content="text/html;charset=shift_jis">
<meta http-equiv="Content-Script-Type" content="text/javascript">
<title>Sample</title>
</head>
<body>
<h1>Sample</h1>
<p>Indicate the default script language.</p>
</body>
</html>