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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 23, 20262026-05-23T01:09:14+00:00 2026-05-23T01:09:14+00:00

I want to populate a predefined html table using JavaScript: <table> <tr> <th scope=col>ID</th>

  • 0

I want to populate a predefined html table using JavaScript:

<table>
    <tr>
        <th scope="col">ID</th>
        <th scope="col">Name</th>
    </tr>
    <div id='data'/>
</table>

using

document.getElementById('data').innerHTML = ....

But since <div> is not allowed inside of <table> above code doesn’t work. What is the correct way to achieve 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-05-23T01:09:15+00:00Added an answer on May 23, 2026 at 1:09 am

    Instead of Div you can use tr and td.

     <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd"> <html>
    <head>
    <script type="text/javascript">
    function addRow(content,morecontent)
    {
             if (!document.getElementsByTagName) return;
             tabBody=document.getElementsByTagName("tbody").item(0);
             row=document.createElement("tr");
             cell1 = document.createElement("td");
             cell2 = document.createElement("td");
             textnode1=document.createTextNode(content);
             textnode2=document.createTextNode(morecontent);
             cell1.appendChild(textnode1);
             cell2.appendChild(textnode2);
             row.appendChild(cell1);
             row.appendChild(cell2);
             tabBody.appendChild(row);
    
    
    }
    </script>
    </head>
    <body>
    <table border='1' id='mytable'>
    <tbody>
    <tr><td>22</td><td>333</td></tr>
    <tr><td>22</td><td>333</td></tr>
    </tbody>
    </table>
    <button onClick='addRow("123","456");return false;'>
    Add Row</button>
    </body>
    </html>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to populate all the data from my database to a table using
I want to implement a web page (using HTML/PHP, whatever else), that will populate
I want to populate a gridview with table data from SQL. I tried just
Using jQuery/jQueryUI I want to populate a form using this HTML/JS show below. The
I want to populate a table, defined in layout xml file through the programmatic
I have an xml data file and I want to populate a listview in
Probably something stupid I'm doing. I want to populate a hidden DIV with values
Is there an equivalent of .NET's data binding in Qt? I want to populate
I want to populate a label with the employees name when they enter a
I want to populate class with constructor using FETCH_INTO of PDO: class user {

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.