Показать сообщение отдельно
  #3 (permalink)  
Старый 26.11.2010, 16:54
Новичок на форуме
Отправить личное сообщение для alexk984 Посмотреть профиль Найти все сообщения от alexk984
 
Регистрация: 25.11.2010
Сообщений: 3

Бесполезный форум для тех кто не умеет читать справку. Быстрее 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(){}',
)));
Ответить с цитированием