opener` in my child window by the parent window.
in my parent window code is
var a ={"test":""};
var b=a;
in my child window my code is
top.opener.b.test="set by child";
Now i close this child window
now when i see a.test
it gives me set by child
i don't know when i update b
why it is update in a
So How can I reset b
by a
Please help me guys.
Thanks ...