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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T15:28:56+00:00 2026-05-22T15:28:56+00:00

I have the following HTML: <table id=tableName> <tr> <td>One</td> </tr> </table> <div id=divTableRow> <tr>

  • 0

I have the following HTML:

<table id="tableName">
  <tr>
    <td>One</td>
  </tr>
</table>

<div id="divTableRow">
  <tr>
    <td>Two</td>
  </tr>
</div>

I have the following code:

$('#tableName').append($('#divTableRow').html());

I have tried many ways such as targeting the tbody that jQuery creates however my TR and TD tags are never brought across.

Is there a way to encapsulate the html so it is inserted exactly as it is?
I can not put everything in quotes as it contains a lot of inputs etc

  • 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-22T15:28:57+00:00Added an answer on May 22, 2026 at 3:28 pm

    That is completely invalid html so do not expect it to ever work. Why would you have table rows in a div?

    This would work

    http://jsfiddle.net/mplungjan/ZHuuY/

    $("#tableRow tr").each(function() {
        $('#tableName').append($(this).clone());
    });                             
    

    or this if you want to move rather than copy

    $("#tableRow tr").each(function() {
      $('#tableName').append($(this));
    });                             
    
    <table id="tableName" style="border:1px solid green">
      <tr>
        <td>One</td>
      </tr>
    </table>
    
    <table id="tableRow" style="display:none">
      <tr>
        <td>Two</td>
      </tr>
      <tr>
        <td>Three</td>
      </tr>
      <tr>
        <td>Four</td>
      </tr>
    </table>
    

    generated html:

    <table style="border:1px solid green" id="tableName">
      <tbody>
      <tr>
        <td>One</td>
      </tr>
      <tr>
        <td>Two</td>
      </tr>
      <tr>
        <td>Three</td>
      </tr>
      <tr>
        <td>Four</td>
      </tr>
      </tbody>
    </table>
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have the following html code: <table> <tr> <td> <div id=fixmywidth style=position:relative; height:30px;> <div
I have the following html code. <html> <body> <div style=max-width:1600px; min-width:900px; > <table> </table>
I have the following HTML table <table> <tr class=trSelected> <td>One</td> <td>two</td> </tr> </table> I
I have the following HTML code: <table id=userPlaylistTable cellspacing=0 cellpadding=0> <div class=numCellWrapper> <div class=listArrow
I have the following HTML / CSS: <table> <tr> <td> <div> <pre> <code> This
I have the following code to access a HTML table. my $table = $tree->look_down(_tag
I have the following HTML: <div style=30px;> <table width=100%;> <tr> <td> <SELECT name=guidelinks> <OPTION
I have the following code which creates a new table. var html = '<table>';
I have the following code which is parsing a HTML table as simply as
i have the following jquery code to format a html table. $(.jtable td).each(function() {

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.