2007-01-06, 06:42 PM
(This post was last modified: 2007-01-06, 06:42 PM by Dennis Tsang.)
As far as I remember, you cannot have multiline strings in Javascript. You have to put everything on one line:
document.write(" <everything here on one line> ");
or separate them in different stringsdocument.write(" <something> "
+ " <another thing> "
+ " <final thing> ");