worik wrote:
> Friends
>
> I am replacing the contents of a cell like this:
>
> replaceChildNodes(getElement("rightColumnCellID"),
> default_right_column());
>
> The "rightColumnCellID" is a cell in a table (naturally).
>
> This is default_right_column():
>
> var default_right_column = function() {
>
> // The default content for the right column
> var cont;
> try{
> var _r = TR(null, TD(null, 'Rows to display:'));
> cont = TABLE(null,_r);
IE forces you to use TBODYs. This should be
cont = TABLE(null, TBODY(null, _r));
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups
"MochiKit" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/mochikit
-~----------~----~----~----~------~----~------~--~---