Using Multiple Versions of JavaScript with the language Attribute : JavaScript Version « Development « JavaScript DHTML






Using Multiple Versions of JavaScript with the language Attribute

<html>
<head>
  <title>JavaScript version test page</title>
</head>
<body>
<script language="JavaScript">
  //Only JavaScript 1.0 browsers read in this section  document.write('This browser supports JavaScript 1.0<br>');
</script>
   
<script language="JavaScript1.1">
  //Only JavaScript 1.1 browsers read in this section
   
  document.write('This browser supports JavaScript 1.1<br>');
</script>
<script language="JavaScript1.2">
  //Only JavaScript 1.2 browsers read in this section
  document.write('This browser supports JavaScript 1.2<br>');
</script>
<script language="JavaScript1.3">
  //Only JavaScript 1.3 browsers read in this section
  document.write('This browser supports JavaScript 1.3<br>');
</script>
<script language="JavaScript1.4">
  //Only JavaScript 1.4 browsers read in this section
  document.write('This browser supports JavaScript 1.4<br>');
</script>
<script language="JavaScript1.5">
  //Only JavaScript 1.5 browsers read in this section
  document.write('This browser supports JavaScript 1.5<br>');
</script>
</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 the 'noscript' Tag
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