Skip to content

Instantly share code, notes, and snippets.

@kylehg
Created March 1, 2015 22:24
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 kylehg/3a885040753e1f39384a to your computer and use it in GitHub Desktop.
Save kylehg/3a885040753e1f39384a to your computer and use it in GitHub Desktop.
function onReady(fn) {
if (document.readyState != 'complete') {
setTimeout(onReady.bind(null, fn), 10)
} else {
fn()
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment