sitemap
Javascript Tutorial
Bottom of page
This is the Javascript page.
As far as I know, these javascripts run only with Netscape.
Click a button to start. "Ctrl R" reloads and resets.
Orbit
Circle
Follow
Try Pong
and Breakout
see the Special ASCII Character Generator
see the Hex Color Generator
see my nifty Resume Generator
also see the short DHTML page
Back to Home





Javascript Tutorial


Written by Colin D. Joye 1/00

Javascript really is not a very well built language, it's buggy and can even be dangerous to use (I've crashed Netscape many times using it), but it's easy to learn, very simple, very effective and you don't need a compiler, like Java and other more complicated (but far more powerful) languages.

Javascripts can be inserted almost anywhere in an HTML document: inside the <head> or inside the <body> are the standard places (not inside a table or stylesheet). The head is the recommended place for most scripts since the head loads first and it won't seem like your images are loading slow, but that the server is slow.

The <script> and </script> tags are used to define the area where the javascript is written. See "Basic Structure" below.


Top of page