Skip to content

Instantly share code, notes, and snippets.

@acimnotes
Created January 13, 2016 08: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 acimnotes/ce80e6888a2b0e8bac2d to your computer and use it in GitHub Desktop.
Save acimnotes/ce80e6888a2b0e8bac2d to your computer and use it in GitHub Desktop.
my javascript learning.
document.onreadystatechange = function () {
if (document.readyState === "complete") {
// executes after DOM is ready
}
}
window.onload = function() {
// executes when everything is loaded
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment