My problem is a bit off the cuff here, so I\'ll try to explain this best I can.
I have a text area, having css of #object{overflow:hidden;resize:none;}.
#object{overflow:hidden;resize:none;}
Generic JQuery Plugin
Here a generic jquery plugin for scrollBottom of any element:
$.fn.scrollBottom = function() { return $(this).scrollTop($(this)[0].scrollHeight); };
usage:
$("#logfile").val( $("#logfile").val() + "this is new line test\n" ).scrollBottom();