Skip to content

Instantly share code, notes, and snippets.

@yoko
Created June 12, 2009 07:24
Show Gist options
  • Save yoko/128495 to your computer and use it in GitHub Desktop.
Save yoko/128495 to your computer and use it in GitHub Desktop.
document.write = function(str) {
var script = document.getElementsByTagName('script');
script = script[script.length - 1];
var container = document.createElement('div');
container.innerHTML = str;
script.parentNode.insertBefore(container, script);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment