Doing what you require is fairly even given a decent implementation of the latest javascript DOM, both IE5.5+ and Moz6 should support what you are looking to do. All you really need to do is treat the table it self as an object and then call the various table manipulation methods on it via the DOM. Here are a quick summary of several methods I copied from the MSDN site:
createTFoot
Creates an empty tFoot element in the table. 

createTHead
Creates an empty tHead element in the table. 

deleteCaption
Deletes the caption element and its contents from the table. 

deleteCell
Removes the specified cell (td) from the table row, as well as from the cells collection. 

deleteData
Removes a specified range of characters from the object.

deleteRow
Removes the specified row (tr) from the element and from the rows collection. 

deleteTFoot
Deletes the tFoot element and its contents from the table. 

deleteTHead
Deletes the tHead element and its contents from the table. 

In reply to Re: Dynamic HTML Tables on the Client Side (OT) by BUU
in thread Dynamic HTML Tables on the Client Side (OT) by derby

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.