[jQuery] Load into tbody, errors IE6

[jQuery] Load into tbody, errors IE6


Hey all,
I have a script that does an ajax load into a tbody jQuery object, like so:
$tbl = $("#" + asp + "_tbody"); // dynamically finds tbody
$tbl.load("prodsched/dom_dpdcolorrow.html",
{},
addrow
); // load html content (tr's) into tbody
The html file consists of a table row <tr> with some junk in it.
It works great on Firefox but gives the error "unknown runtime error" in
IE6. Is this an issue with IE6 not being able to innerHTML a tbody or
something? If so is there a workaround? Thanks for any help.
-- Josh