Skip to content

Instantly share code, notes, and snippets.

@ChuckJHardySnippets
Created March 7, 2012 08:11
Show Gist options
  • Save ChuckJHardySnippets/1991853 to your computer and use it in GitHub Desktop.
Save ChuckJHardySnippets/1991853 to your computer and use it in GitHub Desktop.
JavaScript: Document Ready
$(function() {
// Handler for .ready() called.
})
$(document).ready(function() {
// Handler for .ready() called.
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment