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 7823869
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T08:24:05+00:00 2026-06-02T08:24:05+00:00

Let’s say I have two textareas… Textarea 1 <textarea class=one></textarea> Textarea 2 <textarea class=two>Hi

  • 0

Let’s say I have two textareas…

Textarea 1

<textarea class="one"></textarea>

Textarea 2

<textarea class="two">Hi There.</textarea>

I want to be able to add text from what I typed in textarea one after the text in textarea two. For example: If I write “My name is Joe.” in textarea one it will simultaneously duplicate and write “My name is Joe.” in textarea two after the existing “Hi There.” text.

The result would be…

<textarea class="2">Hi There. My name is Joe.</textarea>

Can I do this with jQuery or do I need to do this with AJAX? How would I go about doing this?

  • 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-06-02T08:24:07+00:00Added an answer on June 2, 2026 at 8:24 am

    You will notice lag when binding to the keyup event. When you normally bind to the keydown event the value of the text-area has not yet changed so you can’t update the value of the second text-area until you determine the key pressed during the keydown event. Lucky for us we can use String.fromCharCode() to append the newly pressed key to the second text-area. This is all done to make the second text-area update quickly without any lag:

    $('.one').on('keydown', function(event){
        var key = String.fromCharCode(event.which);
        if (!event.shiftKey) {
            key = key.toLowerCase();
        }
        $('.two').val( $(this).val() + key );
    });​
    

    Here is a demo: http://jsfiddle.net/agz9Y/2/

    This will make the second text-area have the same content as the first one, if you want to append what’s in the first to the second you can just add the value of the first to the second rather than overwriting:

    $('.one').on('keydown', function(event){
        var key = String.fromCharCode(event.which);
        if (!event.shiftKey) {
            key = key.toLowerCase();
        }
        $('.two').val( $('.two').val() + $(this).val() + key );
    });​
    

    Here is a demo: http://jsfiddle.net/agz9Y/3/

    Update

    You can change this a bit so the .two element remembers its own value:

    $('.one').on('keydown', function(event){
        var key = String.fromCharCode(event.which);
        if (!event.shiftKey) {
            key = key.toLowerCase();
        }
    
        //notice the value for the second textarea starts with it's data attribute
        $('.two').val( $('.two').data('val') + ' -- ' + $(this).val() + key );
    });
    
    //set the `data-val` attribute for the second textarea
    $('.two').data('val', '').on('focus', function () {
    
        //when this textarea is focused, return its value to the remembered data-attribute
        this.value = $(this).data('val');
    }).on('change', function () {
    
        //when this textarea's value is changed, set it's data-attribute to save the new value
        //and update the textarea with the value of the first one
        $(this).data('val', this.value);
        this.value = this.value + ' -- ' + $('.one').val();
    });​
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

Let's say I don't have photoshop, but I want to make pattern files (.pat)
Let me explain best with an example. Say you have node class that can
Let's say I have thousands of users and I want to make the passwords
Let's say I have two tables orgs and states orgs is (o_ID, state_abbr) and
Let's say on a page I have alot of this repeated: <div class=entry> <h4>Magic:</h4>
Let's say I have a text file composed like this ##### typeofthread1 ##### typeofthread2
Let's say I have the following text: (example) <table> <tr> <td> <span>col1</span> </td> <td>col2</td>
Let's say I have a C++ Visual Studio 2010 solution with 2 projects: one
Let's say I have the following classes : public class MyProductCode { private String
Let’s say I have an Angry Birds game. I want to know how many

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.