To begin, create an HTML file and copy the code from our post A Basic HTML Page Template, and we will paste our JavaScript into it. I have used “SimpleJavascriptExample.html” as the name of my file, and I will paste add this code
<script type="text/javascript">
document.write("Welcome to XoaX.net!");
</script>
inside the body tags so that the code in my file looks this:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<title>XoaX.net</title>
</head>
<body>
<script type="text/javascript">
document.write("Welcome to XoaX.net!");
</script>
</body>
</html>
Now, if we open the file with a browser, we will see the message “Welcome to XoaX.net!” printed out. This exact message could be written without JavaScript by just putting the message inside the body tags by itself. However, we are preparing the way to write more complex JavaScript examples.
In this example, we have one line of JavaScript code inside of the script tags. The script tags, along with the type designation “text/javascript,” tell the browser that the enclosed code is JavaScript. The single line of JavaScript code inside the tags tells the browser to call the write() function on the document object with the argument “Welcome to XoaX.net!”. The semicolon at the end of the line signals the end of the command.

RSS
Atom
Feedburner