[jQuery] jQuery for Plazes/Problem with fadeIn/fadeOut
Hi there,
we are now using jQuery for Plazes:
http://beta.plazes.com/people/
A mixture of Google Maps API and jQuery... :-)
Was fun to use jQuery! Although there's one problem at that page with
IE: The list on the left shall fadeIn/fadeOut whenever it is updated.
This does not work in IE (hasLayout is set). I got the feeling, that
this sometimes happens when a container loads new content via $.load.
Maybe someone has an idea? I cannot reproduce that with a simple test
case...
The regarding code looks like this:
$(container + " div").fadeOut("fast", function() {
$(this).empty();
$(this).before("<img class=\"progress\"
src=\"/images/site/loading.gif\" alt=\"Loading…\" />");
$(container + " div").load("/people/list.ajax.php" + query,
function() {
$(container + " .progress").remove();
$(container + " div").fadeIn("slow");
});
});
Regards,
Klaus
--
klaus.hartl@stilbuero.de
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/