I'm writing a dashboard with boxes (div) that update their content using ajax. The dashboard has two columns and I'm filling the boxes sequentially to start displaying them one after the other. It's working quite good with Firefox but not with IE and Chrome.
On these two, the browser loads all the boxes before displaying the whole page. With Firefox, the boxes appear one after the other, sequentially. The code is the following: jQuery.each(col.boxes, function(i) { colContent = renderBox(col.boxes[i], tabId); // getting the box content using ajax jQuery("#"+(colId)).append(colContent); }); Any idea why is it not working with IE and Chrome?