How To Create Your First Javascript Web Page
how to create your first javascript web page
how, to, create, your, first, javascript, web, page
How To Create Your First Javascript Web Page
Post Description: how to create your first javascript web page
POST# 1195
Posted On: Sat Apr 19, 2008 6:51 pm
web hosting
Topic: How To Create Your First Javascript Web Page
creating your first script. now that you know how to use the HTML SCRIPT tags to tell broswer about the javascript in a document, you're ready to learn how to add the actual javascript code between those SCRIPT tags. the first coding example often given to teach any language is one that writes some osero fo text to the default output area. commonly knows as the basic "hello world script.
following that convetion, you first script will write a string of text to a web page

Writing a hello world script in javascript:

step 1. open your text editor (like notepad if you have windows)

step 2. copy and paste the following code into a blank notepad
<HTML>
<BODY>
<SCRIPT Language="Javascript">
<!--
document.write ("Hello World. This Is A Webune Script Written In Javascript!");
//-->
</SCRIPT
</BODY>
</HTML>


step3. save this file as webune-javascript.html and open it with your web browser. you should see a single like of text that was written with Javascript


No Repies
(0) Comments for How To Create Your First Javascript Web Page

What do you think?

* name:  

* email:  

* Please enter comments:


Receive Replies on my Comments
(An email will be sent to you when someone replies to your comments)

Add image to comments
yes no             upload
     
  1. Putting Javascript In An HTML File
  2. Where Do You Put Javascript Code? HEAD OR BODY?
  3. How To Use The HTML SCRIPT Tags In Javascript
  4. How To Attached External Javascript Scripts
  5. How To Hide Javascript Code From Older Browsers
  6. How To Create Your First Javascript Web Page
  7. How To Insert Javascript Code Into HTML Pages
  8. How To Display Or Show Text On Html Using Javascript Document.write()