JavaScript

System Info
Clocks
Equalizer
Text in the Form
Background Color
Goodbye Pop-up
MultiLink
Window's Size
MultiLink-II

DHTML


Books

Russian | Main Page


Useful links:






System Info | Description

If you want to use any of this examples, please put a link to our site.
Here you can find HTML-code for such link.

<html><head>
<title>www.redmount.com - JavaScript - System Info</title>

<script language=javascript>
<!--
  function info() 
  {
    location.href="brows.html";
  }
//-->
</script>

</head>

<body bgcolor="White" leftmargin=30 marginwidth=30>

<form>
<input name=random type=button value="Вывести сведения" onClick="info()">
</form>

</body>
</html>

brows.html

<html><head>
<title>www.redmount.com - JavaScript - System Info</title>
</head>

<body bgcolor="White" leftmargin=30 marginwidth=30><br>

<script language=javascript>
<!--
    document.open();

    document.write(navigator.appName); 
    document.write('<br>');
    document.write(navigator.appVersion); 
    document.write('<br>');
    document.write(navigator.appCodeName); 
    document.write('<br>');
    document.write(navigator.userAgent);
//-->
</script>

</body>
</html>