Skip to content

Instantly share code, notes, and snippets.

@logeshpaul
Last active December 15, 2015 12:29
Show Gist options
  • Save logeshpaul/5260904 to your computer and use it in GitHub Desktop.
Save logeshpaul/5260904 to your computer and use it in GitHub Desktop.
Run JavaScript Only After Entire Page Has Loaded
$(window).bind("load", function() {
// code here
});
$(window).load(
function() {
// code here
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment