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 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 this table in an Oracle DB which has a primary key defined
I have this scenario... 1.- I'm providing a Dynamic Table for wich users can
I have a table with more than a millon rows. This table is used
i have a GridView (selectable) in which I want to generate a dynamic GridView
Say I have this table: Person table -------------- PersonId Address table ------------ AddressId PersonAddressId
well i have this messages table with sample values like these: msg_id recipient_id read
suppose that I have this RDBM table ( Entity-attribute-value_model ): col1: entityID col2: attributeName
I have this class called Table: class Table { public string Name { get
I have this XML in a column in my table: <keywords> <keyword name=First Name
I have this .NET web app that draws a table in Page_Load. Then after

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.