user8809819
user8809819

Reputation:

Scroll to end of page after load ajax

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

Answers (1)

Kenji Mukai
Kenji Mukai

Reputation: 599

You could do this:

window.scrollTo(0,document.body.scrollHeight);

Upvotes: 1

Related Questions