Changes

Jump to: navigation, search

A Simple JavaScript Example

4 bytes added, 13:47, 15 April 2009
no edit summary
Ever since the first book on programming for the C language was published it has become traditional that the first example consists of writing code to display the words "Hello World". With this tradition in mind we will begin with such as example.
Using your favorite editor , create an HTML file with the following content:
<pre>
</pre>
Load the HTML file into a JavaScript enabled browser and a web page will be displayed shwoing showing the text "Hello World". All that this script does is define the standard HTML tags that you would expect to see in an HTML page, and also define embedded JavaScript code that writes text out to the current document (''document'' is the JavaScript object for a web page).
Previously we discussed the event driven nature of JavaScript. In the next example we will extend the "Hello World" example to include event handling, in this case designing our script to display an alert dialog when a button is pressed.
</pre>
When loaded into a web browser the page will appear as before, but this time a push button is visible in the page which, when pressed, will display an alert dialog containing the words "Goodbye cruel world". In order to make this happen we have used the HTML ''<form>'' and ''<input>'' tags to make the button visible and combined this with the onClick event handler. We've specified that when the onClick event of the button is triggered (i.e . when the user clicks on it) then the JavaScript to display the alert dialog should be executed.

Navigation menu