Change URL in a Popup

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

    Change URL in a Popup

    What would be the syntax to change the URL in a popup from the opening page?

    Thanks,

    Jeff
  • Thomas 'PointedEars' Lahn

    #2
    Re: Change URL in a Popup

    Jeff Johnson wrote:
    [color=blue]
    > What would be the syntax to change the URL in a popup from the opening page?[/color]

    RTFM.

    var foobar = window.open(... );
    ....
    if (foobar && !foobar.closed)
    foobar.location = ...;


    PointedEars

    Comment

    • Jeff Johnson

      #3
      Re: Change URL in a Popup

      Many thanks.

      JJ

      Comment

      Working...