vote up 7 vote down star
1

what is the recommended way of including a Javscript file from another Javascript file?

flag

50% accept rate

6 Answers

vote up 0 vote down

How about this:

(original link)

<script type="text/javascript">
// Function to allow one JavaScript file to be included by another.
// Copyright (C) 2006-08 www.cryer.co.uk
function IncludeJavaScript(jsFile)
{
  document.write('<script type="text/javascript" src="'
    + jsFile + '"></scr' + 'ipt>'); 
}
</script>

and then to include a second JavaScript file simply add the line:

IncludeJavaScript('secondJS.js');

The page that came from includes some gotchas that arise from this approach, so it's worth looking at before using the method.

link|flag
If you use that after the document has loaded your are in for a surprise since document.write will replace your active document. – some Dec 23 '08 at 8:23
Also, there is no need to split the the closing tag in two parts. Since everything in the script tag according to (x)HTML DTD is PCDATA (parsed character data) you have to escape the end-tag </ like this: "<\/script>" – some Dec 23 '08 at 8:30
should be DOM assembled which makes the second point moot though – annakata Dec 23 '08 at 8:45
vote up 3 vote down

There are libraries that'll do this for you. You can also add a script tag to your document pointing to the file you want to load (from js), which is simplest, but has problems.

http://developer.yahoo.com/yui/yuiloader/

http://www.appelsiini.net/projects/lazyload

Edit: I see a lot of answers that add a script tag to the head of your document. As I said this simple solution has a problem, namely you won't know when the browser has finished loading the script you requested, so you wont know when you can call this code. If you want to use a solution like this you should also add a callback somehow to tell you when the required code was loaded.

link|flag
adding a callback is a perfectly reasonable thing to do - at the end of the day every library's bootstrapping is just an implementation of this technique, Ryan Doherty just posted a simple example. – annakata Dec 23 '08 at 9:33
Lazy Load plugin is about lazy loading images. It does not load JavaScript files. – Mika Tuupola Dec 23 '08 at 12:37
vote up 4 vote down

Most people add the JavaScript file to the head of the document:

<script type="text/javascript">
  var newfile=document.createElement('script');
  newfile.setAttribute("type","text/javascript");
  newfile.setAttribute("src", '/myscript.js');
  document.getElementsByTagName("head")[0].appendChild(newfile);
</script>
link|flag
@Ryan: Argh! I was just posting that! ;) – some Dec 23 '08 at 8:42
suggest edit to rewrite as util function – annakata Dec 23 '08 at 8:47
vote up 0 vote down

Theres also an function built into Scriptaculous that is very easy to use.

Scriptaculous.require("path/to/script.js");

Worth knowing, since Scriptaculous is a very common javascript library these days.

link|flag
vote up 1 vote down

jQuery has getScript() function. Also note that Lazy Load mentioned above is only for images. Not for JavaScript files.

$.getScript(url, [callback]);
link|flag
vote up 0 vote down

Dojo does it using dojo.require():

dojo.require("your.module.name");

Normally this is a synchronous operation done with XHR. But if you use the xDomain build it will be asynchronous and dojo.addOnLoad() will be raised when the script is loaded.

Read more about it:

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.