Navigator Scripting
Using JavaScript in HTML
JavaScript can be embedded in an HTML document in two ways:
- As statements and functions using the SCRIPT tag.
- As event handlers using HTML tags.
The SCRIPT tag
A script embedded in HTML with the SCRIPT tag uses the format:
<SCRIPT>
JavaScript statements...
</SCRIPT>
The optional LANGUAGE attribute specifies the scripting language as follows:
<SCRIPT LANGUAGE="JavaScript">
JavaScript statements...
</SCRIPT>
The HMTL tag, <SCRIPT>, and its closing counterpart, </SCRIPT> can enclose any number of JavaScript statements in a document.
JavaScript is case sensitive.
Example 1: a simple script.
<HTML>
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
document.write("Hello net.")
</SCRIPT>
</HEAD>
<BODY>
That's all, folks.
</BODY>
</HTML>
Example 1 page display.
Hello net. That's all folks.
Code Hiding
Scripts can be placed inside comment fields to ensure that your JavaScript code is not displayed by old browsers that do not recognize JavaScript. The entire script is encased by HTML comment tags:
<!-- Begin to hide script contents from old browsers.
// End the hiding here. -->
Defining and Calling Functions
Scripts placed within SCRIPT tags are evaluated after the page loads. Functions are stored, but not executed. Functions are executed by events in the page.
It's important to understand the difference between defining a function and calling the function. Defining the function simply names the function and specifies what to do when the function is called. Calling the function actually performs the specified actions with the indicated parameters.
Example 2: a script with a function and comments.
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
<!-- to hide script contents from old browsers
function square(i) {
document.write("The call passed ", i ," to the function.","<BR>")
return i * i
}
document.write("The function returned ",square(5),".")
// end hiding contents from old browsers -->
</SCRIPT>
</HEAD>
<BODY>
<BR>
All done.
</BODY>
Example 2 page display.
We passed 5 to the function.
The function returned 25.
All done.
The HEAD tag
Generally, you should define the functions for a page in the HEAD portion of a document. Since the HEAD is loaded first, this practice guarantees that functions are loaded before the user has a chance to do anything that might call a function.
Example 3: a script with two functions.
<HEAD>
<SCRIPT>
<!--- hide script from old browsers
function bar() {
document.write("<HR ALIGN='left' WIDTH=25%>")
}
function output(head, level, string) {
document.write("<H" + level + ">" + head + "</H" + level + "><P>" + string)
}
// end hiding from old browsers -->
</SCRIPT>
</HEAD>
<BODY>
<SCRIPT>
<!--- hide script from old browsers
document.write(bar(),output("Make Me Big",3,"Make me ordinary."))
// end hiding from old browsers -->
</SCRIPT>
<P>
Thanks.
</BODY>
Example 3 results.
Thanks.
Quotes
Use single quotes (') to delimit string literals so that scripts can distinguish the literal from attribute values enclosed in double quotes. In the previous example, function bar contains the literal 'left' within a double-quoted attribute value. Here's another example:
<INPUT TYPE="button" VALUE="Press Me" onClick="myfunc('astring')">
Scripting Event Handlers
JavaScript applications in the Navigator are largely event-driven. Events are actions that occur, usually as a result of something the user does. For example, a button click is an event, as is giving focus to a form element. There is a specific set of events that Navigator recognizes. You can define Event handlers, scripts that are automatically executed when an event occurs.
Event handlers are embedded in documents as attributes of HTML tags to which you assign JavaScript code to execute. The general syntax is
<TAG eventHandler="JavaScript Code">
where TAG is some HTML tag and eventHandler is the name of the event handler.
For example, suppose you have created a JavaScript function called compute. You can cause Navigator to perform this function when the user clicks on a button by assigning the function call to the button's onClick event handler:
<INPUT TYPE="button" VALUE="Calculate" onClick="compute(this.form)">
You can put any JavaScript statements inside the quotes following onClick. These statements get executed when the user clicks on the button. If you want to include more than one statement, separate statements with a semicolon (;).
In general, it is a good idea to define functions for your event handlers because:
- it makes your code modular-you can use the same function as an event handler for many different items.
- it makes your code easier to read.
Notice in this example the use of this.form to refer to the current form. The keyword this refers to the current object-in the above example, the button object. The construct this.form then refers to the form containing the button. In the above example, the onClick event handler is a call to the compute() function, with this.form, the current form, as the parameter to the function.
Events apply to HTML tags as follows:
- Focus, Blur, Change events: text fields, textareas, and selections
- Click events: buttons, radio buttons, checkboxes, submit buttons, reset buttons, links
- Select events: text fields, textareas
- MouseOver event: links
If an event applies to an HTML tag, then you can define an event handler for it. In general, an event handler has the name of the event, preceded by "on." For example, the event handler for the Focus event is onFocus.
Many objects also have methods that emulate events. For example, button has a click method that emulates the button being clicked. Note: The event-emulation methods do not trigger event-handlers. So, for example, the click method does not trigger an onClick event-handler. However, you can always call an event-handler directly (for example, you can call onClick explicitly in a script).
| Event |
Occurs when... |
Event Handler |
| blur |
User removes input focus from form element |
onBlur |
| click |
User clicks on form element or link |
onClick |
| change |
User changes value of text, textarea, or select element |
onChange |
| focus |
User gives form element input focus |
onFocus |
| load |
User loads the page in the Navigator |
onLoad |
| mouseover |
User moves mouse pointer over a link or anchor |
onMouseOver |
| select |
User selects form element's input field |
onSelect |
| submit |
User submits a form |
onSubmit |
| unload |
User exits the page |
onUnload |
Example 4: a script with a form and an event handler attribute.
<HEAD>
<SCRIPT LANGUAGE="JavaScript">
function compute(form) {
if (confirm("Are you sure?"))
form.result.value = eval(form.expr.value)
else
alert("Please come back again.")
}
</SCRIPT>
</HEAD>
<BODY>
<FORM>
Enter an expression:
<INPUT TYPE="text" NAME="expr" SIZE=15 >
<INPUT TYPE="button" VALUE="Calculate" ONCLICK="compute(this.form)">
<BR>
Result:
<INPUT TYPE="text" NAME="result" SIZE=15 >
<BR>
</FORM>
</BODY>
Example 4 page display.