Bir bölümün scrollHeight kullanma css overflow: auto?
Denedim:
$('test').scrollHeight();
$('test').height(); but that just returns the size of the div not all the content
Nihayetinde, bir sohbet oluşturmaya çalışıyorum ve her zaman ekrandaki geçerli mesajın kaydırma çubuğuna sahibim.
Bu yüzden şöyle bir şey düşünüyordum:
var test = $('test').height();
$('test').scrollTop(test);
Teşekkür ederim,
Brian