Search code examples
javascripthttp-redirectwindow

Close child window, redirect parent window


I've got a page which opens a child window, from a parent.

After the user has done something in the child window, I need the child window to close, and its parent window to be redirected to a page, on the click of a button in the child window.

Any ideas?


Solution

  • from child:

    opener.location.href = '/redirect';
    close();