Resize text area to fit all text on load jquery

后端 未结 7 976
走了就别回头了
走了就别回头了 2020-12-08 06:19

I understand there has been a lot of discussion on this but I have yet to find a solution to fix my needs. Basically I need to autogrow a text area not when you type but on

7条回答
  •  感情败类
    2020-12-08 06:46

    You mentioned there are multiple textboxes. This code will set the height of each textarea according to its own contents.

    $(document).ready( function( ) {
    
        $("textarea").each( function( i, el ) {
            $(el).height( el.scrollHeight );
        ​});
    
    });
    

    Fiddle here

提交回复
热议问题