Using Multiple Versions of JavaScript with the language Attribute : JavaScript Version : Development : JavaScript DHTML examples (example source code) Organized by topic

JavaScript DHTML
C++
JavaScript DHTML Home »  Development   » [  JavaScript Version  ]   
 



Using Multiple Versions of JavaScript with the language Attribute

Please note that some example is only working under IE or Firefox.


/*
JavaScript Unleashed, Third Edition
by Richard Wagner and R. Allen Wyke 

ISBN: 067231763X
Publisher Sams CopyRight 2000

*/

<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.  Using the noscript Tag
6.  Multiple Script Versions
7.  Employing the 'NOSCRIPT' Tag
8.  Rendering Different Content for Scriptable and Nonscriptable Browsers
9.  Hiding Scripts from Older Browsers
10.  JavaScript 1.2 is supported, extract a new URL from the portion
11.  A simple 'sniffer' that determines browser version and vendor
12.  Variable for Browser version and vendor
13.  Get IE Version Number
14.  Get NN (Netscape Navigator) Version Number








Home| Contact Us
Copyright 2003 - 04 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.