This is an old revision of the document!
JavaScript Notes
Base Template
<html> <head> <title>Javascript Page</title> <script language="JavaScript" type="text/javascript"><!-- function init(){ alert("Your browser supports scripting!"); } --></script> </head> <body onload="javascript: init();"> <h1>Javascript Page</h1> <noscript>This will print if the user agent does not support javascript</noscript> <p>This will always print.</p> <script language="JavaScript" type="text/javascript"><!-- document.write("You can also run scripts within the body of the page."); --></script> </body> </html>