<フォーム>
<スクリプトタイプ="text/javascript">
/**
* 複数行テキストボックスの高さ調整
**/
$(関数() {
var $comment = $('#comment');
$('.bigger').click(function () {
if(!$comment.is(":animated")) {
if($comment.height()
//$comment.height($comment.height() 50);//バージョン1
$comment.animate({高さ: " =50"}, 400);
}
}
});
$('.smaller').click(function () {
if(!$comment.is(":animated")) {
if($comment.height() > 50) {
//$comment.height($comment.height() - 50);
$comment.animate({高さ: "-=50"}, 400);
}
}
});
});