Page 44 - Trackpad_V2.1_class8
P. 44
The web browser displays the web page.
CREATING A WEB PAGE WITH EXTERNAL JAVASCRIPT
To use external JavaScript, follow the given steps:
Step 1 Open the Notepad and type the following line:
alert("Hello World");
Step 2 Save the file with .js extension. In our case, we have saved the file with the name
external.js.
Step 3 Open another Notepad and type the following code:
<HTML>
<HEAD>
<TITLE> My First JavaScript </TITLE>
<SCRIPT TYPE="text/javascript" SRC="external.js">
</SCRIPT>
</HEAD>
<BODY>
This message box is displayed using external JavaScript.
</BODY>
</HTML>
Step 4 Save the file with .html extension and open the web page in web browser. You will get the
same output as the previous web page.
42 Trackpad (V2.1)-VIII

