hey que ondaaaa quería ver si me podrían ayudar lo que pasa es q estoy haciendo un sencillo chat pero tengo un problema con el scroll no logro hacer que si tu estas mirando la conversación de arriba no se baje el scroll ojala puedan ayudarme muchas gracias =)
function get_chat_messages(){
var oldscrollHeight = $('#chat_viewport').prop('scrollHeight')
$.ajax({url:"<?php echo base_url().'index.php/news/ajax_get_chat_messages'; ?>",type:'POST',data:{},success:function(result) {
$("#chat_viewport").html(result);
var newscrollHeight = $('#chat_viewport').prop('scrollHeight')-20; //La altura del scroll después del pedido
if(newscrollHeight > oldscrollHeight){
$('#chat_viewport').animate({ scrollTop: newscrollHeight }, 'normal'); //Autoscroll hacia el fondo del div
//alert("siii");
}
}});
}