The main window of a page I am developing has 3 frames: A, B and C.
Frame B opens a new window with window.open("","New Window")
The "New Window" promps the user to fill in some information, and when he hits the submit button, I wanted the "New Window" to close, and the information displayed in Frame A to be updated.
I cannot use window.opener.location.href="file.asp" because the frame that opened the window was Frame B. I want to update Frame A, from "New Window".
How can I do that?
Frame B opens a new window with window.open("","New Window")
The "New Window" promps the user to fill in some information, and when he hits the submit button, I wanted the "New Window" to close, and the information displayed in Frame A to be updated.
I cannot use window.opener.location.href="file.asp" because the frame that opened the window was Frame B. I want to update Frame A, from "New Window".
How can I do that?