Бесполезный форум для тех кто не умеет читать справку. Быстрее jquery выучить самому чем здесь получить ответ
array(
'ajax' => array(
......
'success' => 'function(html){
$("#comp-features-test").html(html);
var intHeight = $("#comp-features-test").height()
$("#comp-features").animate({ height: intHeight },"slow",function()
{
$("#comp-features").html(html);
$("#comp-features .row").css({"opacity":"0"});
$("#comp-features").removeClass("loading");
$("#comp-features .row").animate({
opacity: 1,
}, 300);
})
}',
'beforeSend' => 'function(){
$("#comp-features .row").animate({
opacity: 0.01,
}, 300, function() {
});
$("#comp-features").addClass("loading");
}',
'complete' => 'function(){}',
)));
|