Mega Code Archive

 
Categories / JavaScript Tutorial / MS JScript
 

@_win16

The @_win16 variable determines if a win16 system is being used. When the variable is not true, it is defined as NaN. <html>     <script language="JScript">     <!--     @if (@_win16)       alert("You are using a win16 system.");     @else       alert("You are NOT using a win16 system.");     @end     -->     </script> </html>