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.
|