Created
September 20, 2011 09:47
-
-
Save barneycarroll/1228757 to your computer and use it in GitHub Desktop.
Stop iframes delaying page load
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// iframes delay page load: cut them out and in to reduce synchronous dependency | |
function asyncFrames(){ | |
$('iframe').each(function(){ | |
var | |
markup = $(this).clone(), | |
guide = $('<b>').replaceAll(this); | |
// addLoad: https://gist.github.com/1226302 | |
addLoad(function(){ | |
guide.replaceWith(markup) | |
}); | |
}); | |
}; | |
// Init: | |
// $(asyncFrames); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment