のコード$('.button-up').click(function(){ // }
がトリガーされていません。問題が見つかりません。これは、私がやろうとしていることのオンラインデモです。
$('.button-up').click(function(){
$('.description').animate({height: '80px'}, 400);
$(this).removeClass('button-up');
$(this).html('read more');
$(this).addClass('button-down');
return false;
});
$('.button-down').click(function(){
var height = $('.description').css('height','auto').height() + 20;
$('.description').css('height','125px');
$('.description').animate({height: height+'px'}, 400);
$(this).addClass('button-up');
$(this).html('collapse');
$(this).removeClass('button-down');
return false;
});