Created
June 1, 2014 10:00
-
-
Save mcbrwr/e86b45b51c6117a70f82 to your computer and use it in GitHub Desktop.
Do something when the document is ready
This file contains hidden or 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
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