Skip to content

Instantly share code, notes, and snippets.

View furf's full-sized avatar
🎯
Focusing

Dave Furfero furf

🎯
Focusing
View GitHub Profile
@furf
furf / jQuery.document.write.js
Created November 18, 2010 16:33
Deferred document.write
(function (document, $) {
document.write = function (text) {
var elem = $('script').last();
$(function () {
$('<div>').html(text).insertBefore(elem);
});
};
})(this.document, this.jQuery);