Created
January 13, 2016 08:56
-
-
Save acimnotes/ce80e6888a2b0e8bac2d to your computer and use it in GitHub Desktop.
my javascript learning.
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
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