devxlogo

How can I use JavaScript functions defined in an external file?

How can I use JavaScript functions defined in an external file?

Question:
How can I use JavaScript functions defined in an external file?

Answer:
When JavaScript and the tags, you can save it in a separate file and add a src property to the <script> tag that tells the browser where to find it, as demonstrated below:

This makes it possible for multiple HTML files to share the same JavaScript code. In order for this feature to work, however, there are several requirements which must be met:

  1. The external source file name must end with the extension .js.
  2. The .js file must contain only JavaScript code and no HTML.
  3. The client's browser must be Netscape Navigator 3.
  4. If the .js file is downloaded from a server, the server must map it to the application/x-javascript MIME type.

Requirements (1) and (2) are easy to achieve, since you have complete control over the files.

Requirement (3) is difficult to enforce, since it means you have to alienate all non-Netscape 3 users -- or at the very least generate a separate set of Web pages for them. How many times have you downloaded a Web page and seen a message warning you that "this document looks best on" some other browser besides yours? If your Web page uses functions defined in external JavaScript files, your document should probably include the message, "This document works only on Netscape 3." Of course, even if you don't warn the other browser users, JavaScript error windows popping up all over the place will probably clue them in.

Requirement (4) might be a little tricky, but not impossible. It means that you may have to contact your Web server's administrator and ask him or her to configure the MIME type for you. If your pages use external JavaScript files and they work on your local file system (i.e., your hard disk) but not on your server, chances are that the Web server is not serving .js files correctly.

One last note about using the tag. Browsers that support external JavaScript files ignore everything between the enclosing script tags when external files are specified. This makes it possible to warn other JavaScript-capable browser users that their browser is about to freak out:

See also  5 Ways to Improve Customer Experience
devxblackblue

About Our Editorial Process

At DevX, we’re dedicated to tech entrepreneurship. Our team closely follows industry shifts, new products, AI breakthroughs, technology trends, and funding announcements. Articles undergo thorough editing to ensure accuracy and clarity, reflecting DevX’s style and supporting entrepreneurs in the tech sphere.

See our full editorial policy.

About Our Journalist