[-_-] Posted February 2, 2008 Share Posted February 2, 2008 I'm getting 614 errors on my page. Can someone have a look at my tables and tell me what I'm doing wrong there? I think thats the main problem. I am using direct links, css, floats and a form. I hope to use ajax on this page in the future too, so users organize the page to their personal preference. Failed validation, 614 Errors Heres the page link http://www.plentyoftorrents.com//rat...arch/index.htm The table works with a javascript so I can rename things on the html page heres the start, first table and end, of the table. <!-- table begins --> <table cellspacing="1" cellpadding="2" class="" id="myTable" width="480"> <thead> <tr> <th class="c1"> Site</th> <th class="c2"> Language</th> <th class="c3"> Rating</th> <th class="c4"> Status</th> <th class="c5"> Category</th> </tr> </thead> <tbody> <tr class="r1"> <td class="c1"><a href="http://Bitenova.nl"> Bitenova.nl</a></th> <td class="c2"> EN</th> <td class="c3"> <span class="hideFromScreen">10</span><img src="tableimg/sr10.png"alt="10"/></th> <td class="c4"> Public</th> <td class="c5"><a href="http://www.plentyoftorrents.com/general.php#general"> General</a></th> </tr> </tr> </tbody> <tfoot> <tr> <th class="c1"> Site</th> <th class="c2"> Language</th> <th class="c3"> Rating</th> <th class="c4"> Status</th> <th class="c5"> Category</th> </tr> </tfoot> </table> <script type="text/javascript"> var t = new SortableTable(document.getElementById('myTable'), 100); </script> <!-- table ends--> Any ideas? Should I switch doc types? If so which one would accept these tables, search form, search links and .css? ??? Quote Link to comment Share on other sites More sharing options...
bronzemonkey Posted February 2, 2008 Share Posted February 2, 2008 Your link takes me to a page that the validator does not recognise. Your url is wrong. Just go through the validator's error messages one by one and fix the problems. For starters, tfoot should come directly after thead and not after tbody. The transitional doctypes are the most forgiving, so if you're getting hundreds of errors using that, then you are doing something very wrong in your coding. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.