Click to return to the HTML Help home page    
Web Workshop  |  DHTML, HTML & CSS  |  HTML Help

Example: Create a Global Script File


Microsoft Corporation

Updated June 10, 1999

You can consolidate scripts in a global file that can be referenced from pages in both compiled and uncompiled help systems. This makes it easier to maintain scripts that are used by many different pages, such as those used for image-swapping. This example shows a global file using JavaScript, but it will work with other Web scripting languages, such as Microsoft Visual Basic Scripting Edition.

There are three steps to implementing a global script file:

  1. Create the script file using Notepad (or another text editor). This is the file that contains all of the script code. Save this file with a .js extension.
  2. Add a <SCRIPT> tag to the <HEAD> tag of each HTML file. This links the code in your global file to the page. The tag should look like this:
    <script language="JavaScript" src="master.js"></script>

    Where JavaScript is the name of the scripting language you are using and master.js is the name of the global script file.

  3. If you are creating a compiled help (.chm) file, add the file name of your master script file to the [FILES] section of your project (.hhp) file.

You can call scripts that are stored in a global file the same way you would call script code that is actually on the page. For example, if you created a global file with function Foo(), you could reference it like this: <a onclick="Foo()">.

Notes


link to overview topic Tips and Tricks
 


Back to topBack to top

Did you find this material useful? Gripes? Compliments? Suggestions for other articles? Write us!

© 1999 Microsoft Corporation. All rights reserved. Terms of use.