I have two file
A.html
<a href="B.html">B</a>
<script>
var mywindow = open("child.html","child", "height=200,width=200");
</script>
B.html
<script>
/*want to use mywindow property .Can we serialize whole window object and pass ? */
</script>
When I move to b.html, can we use mywindow variable with all its window properties. So that I can still play around with child window from b.html.
In
B.html, you could use:As long as you use the same window name (
child) you used when first opening the window.