Created
January 8, 2012 13:58
-
-
Save dominikzogg/1578436 to your computer and use it in GitHub Desktop.
DOM Loaded / Window Loaded Mootools
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
window.addEvent('domready', function() | |
{ | |
// wird ausgefuehrt wenn der DOM fertig geladen ist | |
}); | |
window.addEvent('load', function() | |
{ | |
// wird ausgefuehrt wenn der DOM inkl. Bildern usw. geladen ist | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment