2 Methods for Referencing (Including) External JavaScript Files in Domino

2 Methods for Referencing (Including) External JavaScript Files in Domino

Ever wonder how you could reference your JS files, without having to constantly copy and paste or use subforms? Here's 2 simple ways to do it!
PLACEMENT OF THE SCRIPT FILE:

Option 1) Using a Page or Form:
-Paste your JS into a form or page.
-Exclude the script tags.
-Include commetns as "'s" as usual.
-Select the form/page property "Treat conetents as HTML"
-Name it whatever you like, I recommend you use a simple alias.

Option 2) Using Image Resource
-Create a new Image Resource, and select your script file.
-Name it by typing the extension manually. (i.e. menuScript.js )

(Each option has its perks. If you're using the same script for multiple files, Image Resource would be best so you don't have to modify the same code in multiple places. If the code is just for this app, use a page/form, so you can quickly modify the code.)

PART TWO: REFERNCEING THE SCRIPT FILE

On a page or form, include the follwing code as pass-thru HTML:

<script language="javascript">
document.write("<SCRIPT LANGUAGE='JavaScript' SRC='aliasForYourScriptPage?OpenPage'></SCRIPT>");
</script>

If you created the script on a form, you would use '?OpenForm'. Likewise, '?OpenImageResource' for an Image Resource.

I recommend including this code on the top of the page/form. Even though, depending upon the script, it could be placed

    Requires Free Membership to View

    Register today to access targeted resources from our editorial writers and independent industry experts focused on Lotus Domino, Notes, Workplace and other related technologies.

    By submitting your registration information to SearchDomino.com you agree to receive email communications from TechTarget and TechTarget partners. We encourage you to read our Privacy Policy which contains important disclosures about how we collect and use your registration and other information. If you reside outside of the United States, by submitting this registration information you consent to having your personal data transferred to and processed in the United States. Your use of SearchDomino.com is governed by our Terms of Use. You may contact us at webmaster@TechTarget.com.

anywhere on the page.

You can also easily reference CSS files. See my other tip:
2 Methods for Referencing (Including) CSS Files in Domino

This was first published in January 2001

Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.