The typing the textarea content to increase the height of the textarea
<div id="moveable-content "> <textarea class=" textarea-editer " id="write_content" style=""></textarea></div>
In the normal typing the textarea height increased width in the scroll bar but inthis function increased the textarea height with no scroll
$('#moveable-content').on('change click keyup keydown paste cut', 'textarea', function () {
$(this).height(0).height(this.scrollHeight);
jQuery('#moveable-content').css({'height': this.scrollHeight });
jQuery('#text-content-height').val(this.scrollHeight+'px');
}).find('textarea').change();