No problem.
Before inserting the TinyMCE editor, this is the table row & cell code:
<tr> <td><label for="textarea2">Text Area:</label><br /> <textarea name="textarea" id="textarea2" cols="45" rows="5"></textarea> </td> </tr>
After inserting it, this same region looks like this:
<tr> <td><label for="textarea2">Text Area:</label><br /> <textarea name="textarea" id="textarea2" cols="45" rows="5"></textarea> /td> </tr>
The closing tag for <td> is missing: /td>
It seems that when you insert this into a table cell, it removes the < symbol from the closing TD tag. |
|
|