Re: [Htmlvalidator-help] Validate after execution of javascript (or "AJAX")
Brought to you by:
mgueury
From: Marc G. <mg...@sk...> - 2007-01-17 21:50:11
|
Hi Bryce, This will be corrected in version 0.835 when I will release it. It should be quite soon. This problem was introduced by a change I did to make the extension compatible with Firefox 2.0. So, it will be corrected soon. 0.835 will introduce some UI changes and I think looks a little better too. Marc Bryce Nesbitt wrote: > The current beta has a fascinating new option, to validate a page after > javascript has run. But I can't get it to give me any result. Does > anyone else have this working? I use SUSE 10.0 and Windows 2000, with > the current firefox and tidy beta. > > > The feature is probably great! Rather than validating: > > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> > <html> > <head> > <title>JSample2</title> > </head> > <body> > Sample 2: document.write<br> > <script type="text/javascript"> > doc.write( "<br>" ); > doc.write( "<center>" ); > doc.write( "Contacting the W3C Markup Validation Service<br>" ); > </script> > > </body> > </html> > > > You would validate the result: > > <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"> > <html> > <head> > <title>JSample2</title> > </head> > <body> > Sample 2: document.write<br> > <center> > Contacting the W3C Markup Validation Service<br> > </body> > </html> > > > > > |