Hi Wes,
Wes Gamble wrote:
Can anyone verify that you can't update a tbody element in IE 6 by using page['name]'.replace_html?
It's true for all IE versions. IE uses MS Table DOM, not the W3C DOM. There's an explanation on MSDN. You can replace a tbody, you can insert another tbody above or below, but you basically can't do anything via Ajax with an existing <tbody> or <tr>. I think you can update a <td> if that does anything for you. Not 100% sure of all the caveats on that though.
hth, Bill