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

The Archive Base Latest Questions

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

I have this table where I can generate dynamic rows (which has input <type=text

  • 0

I have this table where I can generate dynamic rows (which has input <type="text" /> as content) through jquery’s .append() and I’m storing the generated html into a <input type="hidden" /> by getting the html through jquery’s .html() and adding the value to the hidden with .val().

In Internet Explorer, if I enter values into the textboxes the values are also included in the hidden field, but in Firefox everything except the values are stored in the field.

Edit:

So, my question is: What method should I use to get the values to show even in Firefox?

Edit:

Here are more details on my question:

The table is constructed as such:

<table id="tblTest" class="testTable">
    <thead>
        <tr>
            <td>Product</td>
            <td>Quantity</td>
            <td>Remove TR</td>
        </tr>
    </thead>
    <tbody id="tblTestTR">
    </tbody>
    <tfoot>
        <tr>
            <td></td>
            <td></td>
            <td></td>
        </tr>
    </tfoot>
</table>
<input type="button" id="btnTest" value="Add Table Row" />&nbsp;<input type="submit" id="btnSubmit" value="Submit Form" />
<input type="hidden" id="txtHTML" name="txtHTML" />

With the function to add the table row being:

function AddTR()
        {
            var txtBox = "<tr id='dynTR'><td><input type='text' class='textBoxes' value='' /></td><td><input type='text' class='textBoxes' value='0' /></td><td><input type='button' value='remove' /></td></tr>";
            x++;
            var oRow = $(txtBox);
            $(this).append(oRow);

            oRow.find("input[type=\"button\"]").click(function ()
            {
                $(this).closest("tr").remove();
            });
        }

And to get the HTML of the <tbody> being:

function GetInnerHTML(node)
        {
            alert(node.html());
            $("#txtHTML").val(node.html());
        }
  • 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:38:29+00:00Added an answer on May 22, 2026 at 3:38 pm

    The proper way to read values of input elements is by reading their actual values, not the markup that renders them. You cannot assume that a browser will change the markup to store the values of input elements.

    The fact that IE seems to be doing that is really bad. Always keep in mind that IE is notorious (even with IE9) for breaking standards.

    A similar case where IE stores state by manipulating the original markup: Reading the href attribute of a relative link will give you the resolved absolute URL. Just to give you an idea about how abundant these quirks are…

    Don’t base your algorithm on browser quirks, but seek out the proper way. Try the val() method that jQuery provides.

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

Sidebar

Related Questions

I have a table that contains lots of integers. This table gets queried and
I have a HTML table base invoice for collecting the details of a order.
I have a staff timesheet table where i have timestamp of when those records
Sorry for the title, not easy to phrase it correctly. I have a table
I have a PostgreSQL database with events. Each event has a datetime or an
I have a table of spec numbers that require additional comments to be entered
This is my first day playing with CI and I really like it so
Our project has about 20 developers, but our application makes relatively light use of
I am using Visual Studio 2008 Database Project GDR2 to manage multiple databases and
I am developing a issue logger for my project and am running into an

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.