Automatically scroll down chat div
I have this code, to load chat function getMessages(letter) { var div = $("#messages"); $.get('msg_show.php', function(data) { div.html(data); }); } setInterval(getMessages, 100); What I have to add, to automatically scroll down #messages div on page load, and again with every new chat post? This, doesnt work: function getMessages(letter) { var div = $("#messages"); $.get('msg_show.php', function(data) { div.html(data); $('#messages').scrollTop($('#messages')[0].scrollHeight); }); } setInterval(getMessages, 100); Let's review a few useful concepts about scrolling first: scrollHeight : total