Mathias Hoeschen: document.write in NS und MSIE

Beitrag lesen

Hi,
hast Du es schonmal mit open() und close() versucht?

document.open("text/html", "replace")
document.writeln("<html><head><title>Test</title>");
[...]
document.writeln("</body></html>");
document.close()

Mathias