Textarea auto-scroll to the bottom
You need to set scrollTop
each time you append text:
var textarea = document.getElementById('textarea_id');
setInterval(function(){
textarea.value += Math.random()+'\n';
textarea.scrollTop = textarea.scrollHeight;
}, 1000);
http://jsfiddle.net/mya0u1zo/2/