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?
