|
Simple but ugly!
I display a window by using all javascript
myWindow = window.open();
myWindow.document.write();
........................................
.......................................
myWindow.focus();
I want after the window load, it will be updated in oder to add some children in it.
Then I add
...............................
myWindow.document.write("<body onload=\"updateValue()\">");
.................................
This does not work, I understand.
Then I change to
...................................................
myWindow.document.write("<body onresize=\"updateValue()\">");
...............................................
and add
............................................
myWindow.resizeTo(500,400);
myWindow.focus();
This works but sometimes value updated sometimes value not updated!
I add more resize.
...................................
myWindow.resizeTo(50,40);
myWindow.resizeTo(40,50);
myWindow.resizeTo(500,400);
myWindow.focus();
The result is that the update not 100% done.
Can anyone help for a solution?
Last edited by docco; 09-22-2012 at 12:35 PM..
|