Skip to content

Instantly share code, notes, and snippets.

@carlos-sanchez
Created December 12, 2013 18:52
Show Gist options
  • Save carlos-sanchez/7933355 to your computer and use it in GitHub Desktop.
Save carlos-sanchez/7933355 to your computer and use it in GitHub Desktop.
Document ready
$( document ).ready(function() {
//whatever
});
// Shorthand for $( document ).ready()
$(function() {
//whatever
});
//window load
$(window).load(function() {
// executes when complete page is fully loaded, including all frames, objects and images
alert("window is loaded");
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment