Skip to content

Instantly share code, notes, and snippets.

@yoko
Created January 7, 2009 02:42
Show Gist options
  • Save yoko/44152 to your computer and use it in GitHub Desktop.
Save yoko/44152 to your computer and use it in GitHub Desktop.
lazyScript = (function() {
var write = document.write;
return function(src, override) {
try {
document.write = override || write;
$.getScript(src);
}
catch(e) {}
};
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment