How do i write to the document? I am new to the WEB?
Printable View
How do i write to the document? I am new to the WEB?
Simple really, use document.write()
Could you pleas provide an example? I am new and i am just trying to make a hello world program.
I am assuming you have had no javascript experience. Look at this HTML:
var name = prompt("What is your name?", "Bob");Code:<html>
<head>
<title>document.write example</title>
<script>
var name = prompt("What is your name?", "Bob");
document.write("Hello, " + name + "!");
</script>
</head>
<body>
</body>
</html>
This makes a variable called 'name' and asks the user what they want it to be. The default is Bob.
document.write("Hello, " + name + "!");
What this does is prints "Hello, " to the window and adds the variable 'name' after it, then adds "!". So, if you gave James as your name, the output would be "Hello, James!".