Hi all
What is the best practice to carry out following workflow:
$("#myDiv").hide();
$.getJSON("url", function(data) { ... snorrr ... hours later ... });
$("#myDiv").slideDown();
This above mentioned sequence slides the div long befor hours have passed :-(
Thanks Er