Skip to content

Instantly share code, notes, and snippets.

@furf
Created November 18, 2010 16:33
Show Gist options
  • Save furf/705239 to your computer and use it in GitHub Desktop.
Save furf/705239 to your computer and use it in GitHub Desktop.
Deferred document.write
(function (document, $) {
document.write = function (text) {
var elem = $('script').last();
$(function () {
$('<div>').html(text).insertBefore(elem);
});
};
})(this.document, this.jQuery);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment