Created
January 8, 2012 13:57
-
-
Save dominikzogg/1578434 to your computer and use it in GitHub Desktop.
DOM Loaded / Window Loaded Jquery
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
jQuery(document).ready(function() | |
{ | |
// wird ausgefuehrt wenn der DOM fertig geladen ist | |
}); | |
jQuery(window).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