موضوع اسكريپت ورژن Java-Script


اين اسكريپت به كاربران اعلام مي كند كه مرورگر آنها از چه ورژني از Java-Script حمايت مي كند .
 

<!-- TWO STEPS TO INSTALL JAVASCRIPT VERSION:

1. Paste the first code in the HEAD of your HTML document

2. Add the last coding to the BODY of your HTML document -->

<!-- STEP ONE: Paste the first code in the HEAD of your HTML document -->

<HEAD>

<SCRIPT LANGUAGE="JavaScript">

<
<!-- Begin
jsver = "1.0";
// End -->
</SCRIPT>
<SCRIPT LANGUAGE="JavaScript1.1">
<!-- Begin
jsver = "1.1";
// End -->
</SCRIPT>
<SCRIPT Language="JavaScript1.2">
<!-- Begin
jsver = "1.2";
// End -->
</SCRIPT>
<SCRIPT Language="JavaScript1.3">
<!-- Begin
jsver = "1.3";
// End -->
</SCRIPT>

<NOSCRIPT>
<B>Your browser does not currently support JavaScript.</B>
<P>If your are using Netscape 2 or later then you can enable JavaScript.
<P>Version 2 or 3: Choose Options|Network Preferences, choose the Languages tab, click Enable Javascript and then click OK.
<P>Version 4: Choose Edit|Preferences|Advanced, click Enable JavaScript and then click OK.
<P><HR><P>

With Internet Explorer 5: Go to Tools Menu|Internet Options, Security Tab and click on the Custom Level. Then select disable active scripting under the scripting section.
</NOSCRIPT>

<!-- STEP TWO: Add the last coding to the BODY of your HTML document -->

<BODY>

<SCRIPT LANGUAGE="JavaScript">
<!-- Begin
document.write("<B>Your browser supports JavaScript version " + jsver + ".</B>")
// End -->
</SCRIPT>


<!-- Script Size: 1.50 KB -->