[jQuery] .html and table rows in IE

[jQuery] .html and table rows in IE

I want to either replace the content of a table row, or simply replace
the whole row. Firefox works fine. IE give me an "Unknown runtime
error". Anyone have any hints or workarounds? This thing is driving me nuts.
~ ~ Dave
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml"" xml:lang="en" lang="en">
<head>
<title>test</title>
<script type="text/javascript" src="jquery.js"></script>
<script type="text/javascript">
function replace_row() {
$("#test_row1").html('<td>BBB</td><td>AAA</td>');
}
</script>
</head>
<body>
<table id="x" border="1"><tbody>
<tr id="test_row1">
<td>a</td>
<td>k</td>
</tr>
</tbody></table>
<a href="#" onclick="replace_row()">Test</a>
</body>
</html>
_______________________________________________
jQuery mailing list
discuss@jquery.com
http://jquery.com/discuss/