on my site http://boxcomp.111mb.de/luxus/html9
im using jquery to hide the content until its loaded and to fade it in when its loaded. this way it looks much cleaner and smoother. Im loading the content with AJAX. The problem is, that it doesnt work propper. when the connection is slow, the content appears before its loaded. that shouldnt be the case. here is the code that im using:
<script>
$(document).ready(function() {
$('#home').click(function() {
$('#content-shown , #pics').animate({opacity: 0}, 250, function() {
$('.content-loading').fadeIn(250, function() {
$('#navigation_all , #content-shown').css("height", "1500px");
$('#pics').load('content.html #home-bild').animate({opacity: 1}, 250);
$('#content-shown').load('content.html #home', function() {
$('.content-loading').fadeOut(250, function() {
$('#content-shown').animate({opacity: 1}, 250);
});
});
});
});
});
});
</script>
when an object is clicked, i fade out the actual content, fade in a "please wait" text (.loading) while the content is loading (but invisible) then when the content is loaded, the .loading fades out and the content fades in. but sometimes it apears before everything is fully loaded.
how can i make sure it fades in when its loaded??
thanks!