Using the 'noscript' Tag : JavaScript Version « Development « JavaScript DHTML






Using the 'noscript' Tag


<html>
<head>
  <meta http-equiv="Content-Script-Type" content="text/javascript">
  <title>My First JavaScript Script</title>
</head>
<body>
  <h1>What is returned?</h1>
  <script>
  <!--
    document.write('<p>JavaScript is turned on!</p>');
  //-->
  </script>
  <noscript>
    <p>JavaScript is turned off!</p>
  </noscript>
</body>
</html>



           
       








Related examples in the same category

1.Check whether JavaScript 1.2 is supported
2.Set a variable to determine what version of JavaScript we support
3.Using Multiple Versions of JavaScript with the language Attribute
4. Testing Different JavaScript Versions
5.Multiple Script Versions
6.Employing the 'NOSCRIPT' Tag
7.Rendering Different Content for Scriptable and Nonscriptable Browsers
8.Hiding Scripts from Older Browsers
9.JavaScript 1.2 is supported, extract a new URL from the portion
10.A simple 'sniffer' that determines browser version and vendor
11.Variable for Browser version and vendor
12.Get IE Version Number
13.Get NN (Netscape Navigator) Version Number