Course Technology Logo
     
Home 
Tutorials 
 Tutorial 1
 Tutorial 2
 Tutorial 3
 Tutorial 4
 Tutorial 5
 Tutorial 6
 Tutorial 7
 Tutorial 8
 Tutorial 9
 Tutorial 10

Data Files 

Tutorial 10: Programming with JavaScript


JavaScript Resources on the Web

If you want more information on using JavaScript, here are some resources on the Web:

JavaScript World
JavaScript Forum
The JavaScript Planet
JavaScript WebRing

Creating a Button that Executes a Script

Another way to execute a script is to associate a JavaScript function with a Web form button. This is done by adding the following button field to a Web form:

<button type="button" onclick="function" />

where function is the name of a JavaScript that will run when the Web form button is clicked.