Textarea scales with content

Goal: Get the textarea to grow and shrink with the content.
1. All it takes is a little JQuery.
$('#idOfYourTextArea').keyup(function () {
      $(this).css('height', 'auto');
      $(this).height(this.scrollHeight);
});