Reputation:
function chat (){
$.ajax({
url: "chat_motor.php",cache: false,success: function(html){
$("#chat").html(html);
},
});
}
setInterval (chat, 1000);
I want scroll to end of page after load chat_motor.php
how can i scroll to down after run this code?
Upvotes: 1
Views: 562
Reputation: 599
You could do this:
window.scrollTo(0,document.body.scrollHeight);
Upvotes: 1