Skip to content

Instantly share code, notes, and snippets.

@jq-87
Created July 5, 2017 14:20
Show Gist options
  • Save jq-87/d6097bdfac21fc5d05d7c46cca52895a to your computer and use it in GitHub Desktop.
Save jq-87/d6097bdfac21fc5d05d7c46cca52895a to your computer and use it in GitHub Desktop.
function ready(fn) {
if (document.attachEvent ? document.readyState === "complete" : document.readyState !== "loading"){
fn();
} else {
document.addEventListener('DOMContentLoaded', fn);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment