* James Alarie wrote: >Try this: ><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" > "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> ><html> > <head> > <title>Title</title> > </head> > <body> > <script type="text/javascript"> > <!-- Hide this code from non-JavaScript browsers > max=10; > for (i=0; i<max; i++) { > document.write(i); > } > // End hiding --> > </script> > </body> ></html> From a XHTML position, this would indeed hide the script but rather from all browsers not just from non-JavaScript browsers as anything betwen <!----> is recognized as a real comment and thus ignored by the user agent. XHTML 1.0 advises to use external scripts if they contain <, & or ]]>.Received on Monday, 8 September 2003 23:27:26 GMT
This archive was generated by hypermail 2.2.0+W3C-0.50 : Tuesday, 2 June 2009 18:21:34 GMT