$('document').ready(function(){ $( "#body" ).load( "/templates/home.html", function(){$("#load").fadeOut("slow"); $.get("/info", function( data ) { var text = "" $.each(data, function(i, obj) { text += ""; }); text += "
"+i+" "+obj+"
" $( "#info" ).html( text ); $("#load").fadeOut("slow"); }); }); })