Run JavaScript Only After Entire Page Has Loaded

Chris Coyier on
$(window).bind("load", function() {
   // code here
});