Im having problems getting the window.open function to work properly in internet explorer. The code works fine in firefox, but thats not really an option (cant just force everyone to use that to be able to use the page). anywise, the function im using is as follows:
- function viewallxml(inXML) {
-
-
newwindow1=window.open('','name','height=400,width=500,scrollbars=yes,resizable=yes');
-
var tmp = newwindow1.document;
-
tmp.write('<html><head><title>Input Nodes</title></head><body><font face=arial size=1>');
-
tmp.write(inXML);
-
tmp.write('</font></body></html>');
-
tmp.close();
-
}
Now im trying to sending the function about 10,000 characters, if i reduce this to a little bit below 3,000 it seems to work fine. Is there some kind of limit for how much text i can send a function in IE? would seem pretty retarded if so, especially since i havent been able to find any documention even hinting at that limitation ... anywise any help would be greatly appreciated, thanks.