Skip to content

Instantly share code, notes, and snippets.

@buzzedword
Created December 16, 2010 03:56
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save buzzedword/743001 to your computer and use it in GitHub Desktop.
Save buzzedword/743001 to your computer and use it in GitHub Desktop.
var checkReady = setInterval(function(){
if (document.readyState == "complete") {
document.write('Document ready');
clearInterval(checkReady);
}
}, 1);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment