Posts: 41
Name: Jabis Sevon
Location: Tampere, Finland
|
document type does not allow element "td" here; assuming missing "tr" start-tag
this simply points out that you haven't started an obligatory table row (tr) before your column... (a normal table structure in xhtml goes as follows
Code:
<table>
<thead>
<tr>
<td></td> ( <th> is as applicable )
</tr>
</thead>
<tbody>
<tr>
<td></td>
</tr>
</tbody>
<tfoot>
...
</tfoot>
</table>
also inline javascript and style definitions is bad for your validity, I suggest you externalize both of them ( NO <style type="text/css"></style> but <link rel="stylesheet" type="text/css" href="your.css" />
and NO <script type="text/javascript">...code...</script> but <script type="text/javascript" src="your.js"/> )
that should reduce a lot of the errors for starters :>
|