How do I refresh 6 divs at same time
Sort of a related problem to my other post
I have soem jquery code below that is triggerd by an href
<a id="refreshall" href="#refreshall" class="lnk"><img src="../images/refresh.gif" border="0"></a>
$(document).ready(function() {
$("#refreshall").click(function(evt) {
$("#d1").fadeOut("slow").load("./scores.php?tblNumber=2").fadeIn("slow");
$("#d2").fadeOut("slow").load("./scores.php?tblNumber=3").fadeIn("slow");
$("#d3").fadeOut("slow").load("./scores.php?tblNumber=4").fadeIn("slow");
$("#d4").fadeOut("slow").load("./scores.php?tblNumber=5").fadeIn("slow");
$("#d5").fadeOut("slow").load("./scores.php?tblNumber=6").fadeIn("slow");
$("#d6").fadeOut("slow").load("./scores.php?tblNumber=7").fadeIn("slow");
})
});
However when I click the href and have to wait for about 12 secondes before the divs are refreshed
any ideas