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

  • Home
  • SEARCH
  • 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 3598446
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T20:14:35+00:00 2026-05-18T20:14:35+00:00

This is a rather simple question, I am having problems inserting data from Javascript

  • 0

This is a rather simple question, I am having problems inserting data from Javascript into an HTML table.

Here is an excerpt of my JavaScript:

UPDATED – I got rid of the two loops and simplified it into one, however there is still a problem..

    for (index = 0; index < enteredStrings.length; index++) {
        output.innerHTML += "<td>" + enteredStrings[index] + "</td>"
        + "<td>" + enteredStringsTwo[index] + "</td>";
        nameCounter++;
        total.innerHTML = "Total: " + nameCounter;
    }

And here is an except of my HTML page:

<table id="nameTable">
   <tr>
     <th>First</th><th>Last</th>
   </tr>

Updated Picture:

alt text

  • 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-18T20:14:35+00:00Added an answer on May 18, 2026 at 8:14 pm

    Try this (edited):

    var tableContent = '<tr>';
    for (index = 0; index < enteredStrings.length; index++) {
        tableContent += "<td>" + enteredStrings[index] + "</td>";
        nameCounter++;  // I don't know if this should be there, 
                        // logically the counter should be incremented here as well?
        total.innerHTML = "Total: " + nameCounter;
    }
    tableContent += '</tr><tr>';
    
    for (index = 0; index < enteredStringsTwo.length; index++) {
        tableContent += "<td>" + enteredStringsTwo[index] + "</td>";
        nameCounter++;
        total.innerHTML = "Total: " + nameCounter;
    }
    tableContent += '</tr>';
    output.innerHTML += tableContent;
    

    Edit2 (for updated question code):

    var tableContent = '<tr>';
    for (index = 0; index < enteredStrings.length; index++) {
        tableContent += "<td>" + enteredStrings[index] + "</td>"
        + "<td>" + enteredStringsTwo[index] + "</td>";
        nameCounter++;
        total.innerHTML = "Total: " + nameCounter;
    }
    tableContent += '</tr>';
    output.innerHTML += tableContent;
    

    Edit3 (after looking at the code sent in email):

    var tableContent = "";
    
    for (index = 0; index < enteredStrings.length; index++) {
        tableContent += "<tr><td>" + enteredStrings[index] + "</td>"
    
        + "<td>" + enteredStringsTwo[index] + "</td></tr>";
    
        nameCounter++;
        total.innerHTML = "Total: " + nameCounter;
    }
    output.innerHTML = tableContent;
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I searched google but couldn't find an answer to this rather simple question. I
I'm hoping this is a rather simple question, but I'm pretty new to MVC
I think this question is rather easy for you shell scripting monsters. I am
(This is a question about the UI rather than the technology required to do
Having recently discovered this method of development, I'm finding it a rather nice methodology.
A rather simple question really. I'm working on a project where I need to
I have a rather simple threading question. I'm writing a simple utility that will
My question is rather simple, given: class MyClass{ function a(){ echo F.A ; }
I know this rather goes against the idea of enums, but is it possible
I'd rather do this: say $shop->ShopperDueDate->andand->day_name(); vs. this: say $shop->ShopperDueDate->day_name() if $shop->ShopperDueDate; Any ideas?

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.