Como determino scrollHeight de uma divisão use overflow de css: auto?
Eu tentei:
$('test').scrollHeight();
$('test').height(); but that just returns the size of the div not all the content
No final das contas, estou tentando criar um bate-papo e sempre ter a barra de rolagem para a mensagem atual na tela.
Então, eu estava pensando algo como o seguinte:
var test = $('test').height();
$('test').scrollTop(test);
Obrigado,
Brian
O que há de errado em usar scrollHeight ()?
—
Badr Hari
@BadrHari: Não há
—
TJ Crowder
scrollHeight()
função no jQuery.
é $ ('teste'). get (0) .scrollHeight ();
—
JFouad de