Testing Different JavaScript Versions : JavaScript Version : Development : JavaScript DHTML examples (example source code) Organized by topic

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



Testing Different JavaScript Versions

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 Unleashed</title>
</head>
<body>
   
  <script language="JavaScript">
  <!--    var x = "3";
    var y = 7;
    document.write('x "3"');
    document.write("<br>");
    document.write("y = 7");
    document.write("<br><hr>");
    document.write("JavaScript 1.0 and 1.1<br>");
    document.write("x == 3 : ");
    document.write(x == 3);
    document.write("<br>");
    document.write('y == "7" ');
    document.write(y == "7");
  //-->
  </script>
  <script language="JavaScript1.2">
  <!--
    document.write("<br><br>JavaScript version 1.2<br>");
    document.write("x == 3 : ");
    document.write(x == 3);
    document.write("<br>");
    document.write('y == "7" ');
    document.write(y == "7");
  //-->
  </script>
  <script language="JavaScript1.3">
  <!--
    document.write("<br><br>JavaScript version 1.3 and higher<br>");
    document.write("x == 3 : ");
    document.write(x == 3);
    document.write("<br>");
    document.write('y == "7" ');
    document.write(y == "7");
  //-->
  </script>
  <script language="JavaScript">
  <!--
    document.write("<br><br>Accomodate all versions.<br>");
    document.write("x - 0 == 3 : ");
    document.write(x - == 3);
    document.write("<br>");
    document.write('"" + y == "7" ');
    document.write("" + y == "7");  //-->
  </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 Multiple Versions of JavaScript with the language Attribute
4.  Using the -=noscript=- Tag
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.