Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6863043
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:44:04+00:00 2026-05-27T02:44:04+00:00

I have a textarea which is created after a successful AJAX call. It may

  • 0

I have a textarea which is created after a successful AJAX call. It may contain quite a lot of text, and I would like it’s height to be automatically set so that the whole text would be visible without scrolling.

I am using autoResize plugin (http://james.padolsey.com/javascript/jquery-plugin-autoresize/), but it resizes inputs only on user input.

So, how do I resize a textarea so it would fit the text it contains?

Here is the code of the relevant function (var type can be ‘input’ or ‘textarea’)

function edit_create_input(name, value, type, autocomplete, autoresize)
    {
    var input=$('<' + type + ' class="edit-"' + name + '  name="'+name+'">').val(value); 
    if (autocomplete)
        {
        input.autocomplete("ajax.autosuggest.php",{'multiple':true});
        }
    if (autoresize)
        {
        input.autoResize();
        }
    return input;
  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-27T02:44:05+00:00Added an answer on May 27, 2026 at 2:44 am

    In the plugin source there are 3 events on which the updateSize() function is triggered:

    // Bind namespaced handlers to appropriate events:
    textarea
        .unbind('.dynSiz')
        .bind('keyup.dynSiz', updateSize)
        .bind('keydown.dynSiz', updateSize)
        .bind('change.dynSiz', updateSize);
    

    You should Trigger one of these after ajax loads the content:

    $("#my_textarea").trigger('change.dynSiz');
    

    Edit: according to your code

    // ...
    if (autoresize)
    {
        input.autoResize();
        input.trigger('change.dynSiz');
    }
    // ...
    

    Note: using .trigger() with the namespaced event is more convenient, since using .change() (which is also good) would trigger every change event binded to the object, not just the one you need.

    Update: old plugin source is not available anymore, I could only find a slightly modified version of the original here.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I would like to have some functionality by which if I write <textarea maxlength=50></textarea>
I have a text area on which I would like to listen to change
I have a form with a textarea. Users enter a block of text which
I have a simple ASP.Net MVC View which contains an FCKeditor text box (created
I have created a little robot like the Karel robot ( Wikipedia ) which
I have a textarea in which the user enters the following data: Paul:Nine, Rome
I have a textarea within an HTML page into which my users paste content.
I have a custom server control which wraps a RadEditor (basically a textarea). I
I have the code below, which sends the value of the textarea and either
I have a text area page which is launched from the previous page: $message

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.