Cita:
Iniciado por gVenom Determinar si el scroll está abajo.
Código JavaScipt:
Ver originalvar isScrolledToBottom = target.scrollTop + target.offsetHeight >= target.scrollHeight;
Insertar el contenido deseado.
Código JavaScript
:
Ver originalif (isScrolledToBottom) {
target.scrollTop = target.scrollHeight - target.offsetHeight;
}
Gracias Nuevamente por reponder, te cuento que no se como aplicar a mi div el código de javascript que pusiste.
Este es mi div
<div id="chat" style="width:400px; height:300px; overflow:auto">Aqui muestra la conversación</div>
Intente lo siguiente con tu código de javascript
:
var isScrolledToBottom = chat.scrollTop + chat.offsetHeight >= chat.scrollHeight;
if (isScrolledToBottom)
{ chat.scrollTop = chat.scrollHeight - chat.offsetHeight;}
Donde sacar este variable o atributo "target";?
Por favor ayudame gracias.