Hi there, I've been playing with jQPanels, loading remote content to some divs. Everything works fine using the load method - the callback function animates the div when the AJAX request is complete. However, not all the content in the div is loaded - images are still loading when the effects occurs.
This is what I'm using: $target.load(page, function(){ $target.slideDown(); }); However, is there a way I could start the slideDown after *everything* in that div is loaded, graphics included? Shouldn't something like this work: $target.load(page, function(){ $target.load(function () { $target.slideDown(); }); }); Actually, I don't even understand how .load is an AJAX method and an event... Thanks in advance, -Dinis C