I want the user to be able to save the information displayed on a
dynamically created page.
When I write a script like the following:
<SCRIPT>
winNew = window.open("", "test");
winNew.document .writeln("Hello World!");
winNew.document .close();
winNew.focus();
</SCRIPT>
I can view it in IExplorer and if I view code I only see the "Hello World"
part.
But when I try to save it, I get the parent code (as I have typed above).
In Netscape navigator I get the "Hello World", which is what I want.
Do I need to change a setting in IExplorer?
Or does IExplorer need different JavaScript code for this to work.
I must use IExplorer.
Dave
dynamically created page.
When I write a script like the following:
<SCRIPT>
winNew = window.open("", "test");
winNew.document .writeln("Hello World!");
winNew.document .close();
winNew.focus();
</SCRIPT>
I can view it in IExplorer and if I view code I only see the "Hello World"
part.
But when I try to save it, I get the parent code (as I have typed above).
In Netscape navigator I get the "Hello World", which is what I want.
Do I need to change a setting in IExplorer?
Or does IExplorer need different JavaScript code for this to work.
I must use IExplorer.
Dave
Comment