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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T00:17:42+00:00 2026-05-18T00:17:42+00:00

I have several textfields which will populate a text area. I managed to populate

  • 0

I have several textfields which will populate a text area.

I managed to populate it with a javascript function. On the onblur event of a textfield, the value of the textfield is passed and the textarea is field with this value.

However, my problem is the following:

If I modify a previously filled textfield, the textarea will simply append it again.

What I need is some functionality that if:

1: If I give focus to the textfield which is already been filled and I don’t modify it, it will not be appended (I implemented this with an if statement and substring.
2: If I modify a previously filled textfield, the text area DOES NOT append it again at the end of the string BUT it replaces the part of the textarea with just that text field new value.

Take for instance the following 2 textfields:

<input type="text" id="txtName" name="txtName" />
<input type="text" id="txtSurname" name="txtSurname" />

If I fill up these textfields with John and Doe respectively, the textarea value will become:

txtName=John,txtSurname="Doe"

I managed to implement this.

What I need is that if I edit txtName from John to Alex, the textarea value will be as follows:

txtName=Alex,txtSurname=Doe 

and not like is currently being displayed, i.e.

txtName=John,txtSurname=Doe,txtName=Alex

Should I achieve this by using an array which will store all the textfields values?

Any help would be greatly appreciated.

Many thanks in advance.

  • 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-18T00:17:42+00:00Added an answer on May 18, 2026 at 12:17 am

    the following code should work for you. I have wrapped the textboxes inside a div. and also registered a onkeyup event on both the textboxes.

    The javascript code iterates through each textboxe inside the div, and prints its name and value in the textarea.

    HTML

    <div id="textBoxContainer">
        <input type="text" id="txtName" onkeyup="UpdateTextArea();" name="txtName" />  
        <input type="text" id="txtSurname"  onkeyup="UpdateTextArea();" name="txtSurname" />  
    </div>  
    <textarea id="textAreaResult"></textarea>
    

    Javascript

    <script type="text/javascript">
        function UpdateTextArea() {
            var textBoxContainerDiv = document.getElementById("textBoxContainer");
            var textboxes = textBoxContainerDiv.getElementsByTagName("input");
            var finalResult = "";
            var textAreaFinalResult = document.getElementById("textAreaResult");
    
            for (var i = 0; i < textboxes.length; i++) {
                finalResult = finalResult + textboxes[i].id + "=" + textboxes[i].value + ",";
            }
    
            textAreaFinalResult.value = finalResult;
        }
    </script>
    

    Hope this Helps! 🙂

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

Sidebar

Related Questions

I have several TextField columns on my UserProfile object which contain JSON objects. I've
I have several log files of events (one event per line). The logs can
I have an application that uses disabled JTextFields in several places which are intended
I have several areas where I use AJAX to submit text fields. var name
I have several ASP:TextBox controls on a form (about 20). When the form loads,
I have several RequiredFieldValidators in an ASP.NET 1.1 web application that are firing on
I have several tables whose only unique data is a uniqueidentifier (a Guid) column.
We have several jobs that run concurrently that have to use the same config
I have several old 3.5in floppy disks that I would like to backup. My
We have several wizard style form applications on our website where we capture information

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.