标签:
A list of html TextArea element with class name "noteItem", below code will auto resize the TextArea to avoid scrollbar
JQuery:
$(‘.noteItem‘).each(function () {
var scrollHeight = $(this).prop(‘scrollHeight‘);
$(this).css(‘height‘,‘auto‘);
$(this).css(‘height‘, scrollHeight + ‘px‘);
});
reference - http://stackoverflow.com/questions/5980150/jquery-js-get-the-scrollbar-height-of-an-textarea
Html - TextArea - auto sizing to avoid scrollbar
标签:
原文地址:http://blog.csdn.net/jameszhou/article/details/50174357