Below is the sample code to scroll down to the textarea using jquery and javascript :
Code to scroll to down in textarea with jQuery and javascript :
//using jquery
var textArea = $('#textarea');
textArea.scrollTop( textArea[0].scrollHeight - textArea.height() );
//using javascript
var textarea = document.getElementById('textarea');
textarea.scrollTop = textarea.scrollHeight;
var textArea = $('#textarea');
textArea.scrollTop( textArea[0].scrollHeight - textArea.height() );
//using javascript
var textarea = document.getElementById('textarea');
textarea.scrollTop = textarea.scrollHeight;
Click to jsfiddle with the example.
Note*: this example is tested on Google Chrome.