The document ready event executes already when the DOM is ready, even if all the graphics haven’t loaded yet.
$(document).ready(function() {
// executes when DOM is ready
});
The window load event executes after the complete page is fully loaded, including all frames, objects and images.
$(window).load(function() {
// executes when complete page is fully loaded
});
Though simple, worth knowing…