[Htmlvalidator-help] Re: FF Tidy is great! How about javascript?
Brought to you by:
mgueury
From: Marc G. <mg...@sk...> - 2006-05-13 10:01:33
|
Hi Bryce, I think you are a good candidate for the 0.8x beta version I released today if you are a Windows user. This version has a lot of new features but also validation of HTML pages after Javascript or Ajax execution. It works not in the same way than View Rendered Source. But with the innerHTML of the page what allow to find more errors. You can download it here: http://users.skynet.be/mgueury/mozilla/preview_080.html There are test files and explanations here: http://users.skynet.be/mgueury/mozilla/user_guide.html#AJAX Enjoy, Marc Bryce Nesbitt wrote: > Marc; > > HTML Tidy for FireFox is very very useful -- I can't imagine debugging complex websites > (which are built from many HTML fragments) any other way. > > Now, what about Javascript for the future? With many websites there are really *two* > totally separate websites that need to be debugged. First, the markup as presented to > the browser, e.g.: > > <body> > <p>This is a test</p> > <script> > document.write('<td>Hello World!</td>'); > </script> > </body> > </html> > > > Then, the markup after javascript functions have run, e.g.: > > <body> > <p>This is a test</p> > <td>Hello World!</td> > </body> > </html> > > > Is it technically feasible for HTML Tidy to validate both versions of a web page? Often the > really hairy stuff is built by javascript. > > I know of one extension that does something close: > http://jennifermadden.com/scripts/ViewRenderedSource.html > > |