Put loading
information into one div, and main contain to another div. Then use jQuery
ready function to show main content and hide busy cursor
$(document).ready(function () {
$('#loadinginfo').hide();
$('#mainContain').show();
});
a full code example would have been nice
ReplyDelete