What are differences between
$(document).ready(function(){
 //my code here
});
and
$(window).load(function(){
  //my code here
});
And I want to make sure that:
$(document).ready(function(){
}) 
and
$(function(){
}); 
and
jQuery(document).ready(function(){
});
are the same.
Can you tell me what differences and similarities between them?
 
     
     
     
     
     
     
     
     
     
     
     
     
    