Skip to content

Latest commit

 

History

History
28 lines (24 loc) · 439 Bytes

page-load-events.md

File metadata and controls

28 lines (24 loc) · 439 Bytes

Jquery page load events

/**
 * Run code when HTML document is loaded and DOM is ready
 * Images and other external files may not be loaded yet
 */
$(document).ready(function() {
    //...
});

/**
 * Run code when entire page is loaded, including all frames, objects and images
 */
$(window).load(function() {
    //...
});

Coffeescript document ready shortcut:

(($) ->
  $ ->
    # ...
)(jQuery)