All pastes #2093170 Raw Edit

Untitled

public text v1 · immutable
#2093170 ·published 2011-11-08 20:02 UTC
rendered paste body
function loadScript(loc, cb) {
    var scriptdone = false,
		a = document.createElementNS && document.documentElement.namespaceURI,
        a = a ? document.createElementNS(a, "script") : document.createElement("script");
    a.setAttribute("src", loc);
	a.onload = a.onreadystatechange = function () {
		if ((a.readyState && a.readyState !== "complete" && a.readyState !== "loaded") || scriptdone) {
			return false;
		}
		a.onload = a.onreadystatechange = null;
		scriptdone = true;
		cb();
	};
    (document.getElementsByTagName("head")[0] || document.getElementsByTagName("body")[0]).appendChild(a);
};

alert('before loadScript');
loadScript('http://ajax.googleapis.com/ajax/libs/jquery/1.7/jquery.min.js', function() {
	
	alert('jquery loaded.. ');
});