Skip to content

Instantly share code, notes, and snippets.

@isaacs
Created July 28, 2009 21:30
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save isaacs/157681 to your computer and use it in GitHub Desktop.
Save isaacs/157681 to your computer and use it in GitHub Desktop.
Javascript loading example
<!DOCTYPE html>
<html>
<head>
<script>function L(B,D){var A=document.createElement("script"),C=document.documentElement.firstChild;A.type="text/javascript";if(A.readyState){A.onreadystatechange=function(){if(A.readyState=="loaded"||A.readyState=="complete"){A.onreadystatechange=null;D()}}}else{A.onload=function(){D()}}A.src=B;C.insertBefore(A,C.firstChild)};
// async loading of javascript files, starting asap.
L("http://example.com/example.js",function () {
doSomething();
});
L("http://example.com/foo.js", function () {
fooSomeBar();
});
</script>
<title>Javascript loading example</title>
</head>
<body><p>When the JS loads, you'll see something being done, and some bar being fooed.</p></body></html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment