Return to Snippet

Revision: 16468
at August 5, 2009 11:01 by johnloy


Initial Code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
	<meta name="generator" content="HTML Tidy for Mac OS X (vers 1 September 2005), see www.w3.org" />
<script type="text/javascript">
//<![CDATA[
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>

Initial URL


Initial Description


Initial Title
asynchronous loading of javascripts

Initial Tags
ajax, javascript, textmate

Initial Language
Other