Html - TextArea - auto sizing to avoid scrollbar

来源:互联网 发布:类似snapchat的软件 编辑:程序博客网 时间:2024/06/06 06:37

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

4 0
原创粉丝点击