1 | There is only one real JavaScript statement here -- namely |
2 | document.writeln("textstring"); |
3 | This outputs into current page the text in quotes followed by a newline |
4 | And note the rather peculiar way we "hide" JavaScript from browsers that can't understand it by enclosing in convential HTML Comment syntax |
5 | <SCRIPT LANGUAGE="JavaScript" > |
6 | <!-- A Conventional comment to hide JavaScript from old browsers |
7 | ...... Bunch of JavaScript Statements ....... |
8 | //scriptend--> |
9 | </SCRIPT> |
10 | Note depending on your needs, JavaScript can be in Header or Body section of document |