how to reload the parent window

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • MikeLinox
    New Member
    • Apr 2007
    • 2

    how to reload the parent window

    Hi,
    I need to submit the popup child window and meanwhile it should refresh the parent page(no need for submit).Can anyone come with some suggestions.
  • acoder
    Recognized Expert MVP
    • Nov 2006
    • 16032

    #2
    To refresh the parent window:
    Code:
    window.opener.location.reload();
    opener refers to the opening window (parent) and location.reload () reloads the current document.

    Comment

    Working...