refresh opener

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Gordan

    refresh opener

    Hi,

    I open a popup from my main window and when the popup closes the main has to
    be restarted; so I did opener.history. go(0)

    is there another way to refresh the opener?

    Gordan


  • Martin Honnen

    #2
    Re: refresh opener



    Gordan wrote:
    [color=blue]
    > Hi,
    >
    > I open a popup from my main window and when the popup closes the main has to
    > be restarted; so I did opener.history. go(0)
    >
    > is there another way to refresh the opener?[/color]

    if (opener && !opener.closed) {
    opener.location .reload();
    }
    but that doesn't make a difference to history.go(0)

    --

    Martin Honnen


    Comment

    Working...