JavaScript Experimentation (Create A Page Using JavaScript)
To develop your first page in JavaScript Carefully goes through the following steps; these steps will guide you that how to make your very basic first page, JavaScript code;
- Make sure one thing before developing the page, you need to get some idea about markup languages like XHTML/HTML, when you done with that you will be ready for Java Scripting.
- For writing HTML tags open any text editor like Word Pad, Notepad etc.
- The code of JavaScript is directly embedded.
- The code of JavaScript opens and end with <Script> </Script>.
- Inside the Script tag you have to define the script type; <Script type=”text/JavaScript”>
- To display the message of Hello friends on the HTML page you have to write down the following code.
<html>
<body>
<script type=”text/JavaScript”>
document.write(“Hello Fiends”);
</script>
</body>
</html>
With this kind of piece code and using the function of writing it will display Hello friends in the HTML page. For writing any output to the HTML page Document.write is a JavaScript command which you need to use. The example which I have given above is the one of the simplest example which every new learner came across in the learning of JavaScript.
We will get back to you with another topic on JavaScript keep reading. Thanks!

July 26, 2010
Modify the content of an existing element, and only do that after the page has finished loading.
January 29, 2012
Please teach the rest of these internet hooligans how to write and resaecrh!