[jQuery] Taconite, tables and IE

[jQuery] Taconite, tables and IE


Here's my taconite:
    <append select="#data">
         <table>
            <tr>
                <td>
                    65
                </td>
            </tr>
            <tr>
                <td>
                    70
                </td>
            </tr>
        </table>
    </append>
It works fine in Firefox and Opera. In IE, however, the table doesn't show up. Other elements like div's and input's are displayed correctly
alert($('#data').html()); displays all the appended html correctly
What could be the problem? :(