function setHeight(element) { $(element).css({'height':'auto','overflow-y':'hidden'}).height(element.scrollHeight); } $('textarea').each(function () { setHeight(this); }).on('input', function () { setHeight(this); });