Answers for "autoresize textarea javascript"

CSS
16

prevent textarea resize css

textarea {
  resize: none;
}
Posted by: Guest on December-18-2019
0

jquery textarea autosize

$("textarea").keyup(function(e) {
    while($(this).outerHeight() < this.scrollHeight + parseFloat($(this).css("borderTopWidth")) + parseFloat($(this).css("borderBottomWidth"))) {
        $(this).height($(this).height()+1);
    };
});
Posted by: Guest on January-27-2021

Code answers related to "autoresize textarea javascript"

Browse Popular Code Answers by Language