1
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?

1 Answers1

1

You could do this:

window.scrollTo(0,document.body.scrollHeight);
Kenji Mukai
  • 599
  • 4
  • 8