-
Notifications
You must be signed in to change notification settings - Fork 3
Dynamic JavaScript Loading
Christopher J. Stehno edited this page May 12, 2013
·
1 revision
Original Posting: 6/15/2005
I figured out a way to dynamically load JavaScript files at runtime. There are times when you may not always need to import all of your external JavaScripts, or maybe you are using Ajax to load content into a div and you also need to import some script that the content needs. Here is the solution and it works in IE and FireFox:
function loadLibrary(path){
var headElt = document.getElementsByTagName("head").item(0);
var scriptElt = headElt.appendChild(document.createElement("script"));
scriptElt.setAttribute("type","text/javascript");
scriptElt.setAttribute("src",path);
}Pretty simple, and all you have to do to use it is:
loadLibrary("scripts/myscript.js");This works for dynamically loading stylesheet too if you add a link element instead of a script element:
function loadStylesheet(path){
var headElt = document.getElementsByTagName("head").item(0);
var scriptElt = headElt.appendChild(document.createElement("link"));
scriptElt.setAttribute("type","text/css");
scriptElt.setAttribute("rel","stylesheet");
scriptElt.setAttribute("href",path);
}