What is the difference between these two.
$(document).ready(function(){ ... });(function(){ ... })();
Are these both functions called at the same time? I know, document.ready will be triggered when the entire HTML page is rendered by the browser but what about 2nd function (self calling anonymous function). Does it wait for browser to complete rendering the page or it is called whenever it is encountered?

$(function() {});is equivalent to$(document).ready(function() {});– Ian Henry Jul 15 '10 at 20:04