Hello I'm having a trouble with my jQuery it scrolls to bottom well but I want it to scroll to bottom once not every x seconds is pretty annoying and I don't know how to fix it here is my code :)
setInterval(function(){
    var request = $.ajax({
    'url': './message/all',
    'type': 'GET',
    });
    request.error(function(status){
        $('html').html(status.responseText)
    })
    request.done(function(response){
        if(response == '')
        {
            $('.chat-body').html('No Messages :)');
        }
        else
        {
            $('.chat-body').html(response);
            jQuery("div#demo").scrollTop(jQuery("div#demo")[0].scrollHeight);
        }
    })
}, 1500)