Skip to content

Instantly share code, notes, and snippets.

@mcbrwr
Created June 1, 2014 10:00
Show Gist options
  • Save mcbrwr/e86b45b51c6117a70f82 to your computer and use it in GitHub Desktop.
Save mcbrwr/e86b45b51c6117a70f82 to your computer and use it in GitHub Desktop.
Do something when the document is ready
var readyStateCheckInterval = setInterval(function() {
if (document.readyState === "complete") {
// do stuff
init();
clearInterval(readyStateCheckInterval);
}
}, 10);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment