Skip to content

Instantly share code, notes, and snippets.

@kenu
Created August 14, 2011 06:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kenu/1144647 to your computer and use it in GitHub Desktop.
Save kenu/1144647 to your computer and use it in GitHub Desktop.
javascript file loading
function loadJQuery() {
var oScript = document.createElement("script");
oScript.type = "text/javascript";
oScript.charset = "utf-8";
oScript.src = "http://code.jquery.com/jquery-1.6.2.min.js";
document.getElementsByTagName("head")[0].appendChild(oScript);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment