チャット ボックスの自動スクロールが停止しません (上にスクロールできません)。どこに問題があるかはわかっていますが、回避方法がわかりません。自動スクロールするにはチャットボックスが必要ですが、同時に上にスクロールできるようにしたいです。
これが問題の実際の例です。
//Load the file containing the chat log
function loadLog(){
$("#chatbox").animate({ scrollTop: 99999 }, 'normal');
$.ajax({
url: "log.html",
cache: false,
success: function(html){ $("#chatbox").animate({ scrollTop: 99999 }, 'normal');
$("#chatbox").html(html);
$("#chatbox").animate({ scrollTop: 99999 }, 'normal');
}
});
}