Parent window with open child window

I need a page that opens a child window. The baby window will be redirected to another website for processing. Another website will send the result to our server by redirecting to the child server window.our will process the result and return to the parent window and close the child window. Can this be done and how?

+4
source share
1 answer
  • You use the window.open method to open a child window and save the returned link for interaction with it later.
  • You use the window.parent property from the child window to access the parent window.

Here 's an article demonstrating the approach.

+4
source

All Articles