22

Is it possible to change the url of the popup.

Assume I open a popup:

function pop1(){
    window.open('http://google.com','wind1');   
}

Can the url of the popup window 'wind1' be changed to say 'http://msn.com'. Something with location.href or any other solution.

Sushant
  • 235
  • 1
  • 3
  • 8

3 Answers3

38
var w1 = window.open('http://www.canop.org','wind1');

w1.location.href='http://www.google.com';
Denys Séguret
  • 372,613
  • 87
  • 782
  • 758
2

For me, as I was changing just the end of the url (parameters part), I used a little trick: Loading a different url before using the new similar url. I chose to use 'about:blank', but any website url could be used.

self.location = "about:blank";
self.location = desired_url;

//this code works fine both in Mozilla Firefox as in Chrome

Notice that just location = site; does the same as location.href = site.
I use location.href only to READ the current url.

Sergio Abreu
  • 2,686
  • 25
  • 20
1

in the new popup window use this :

$(document).ready(function(){ window.parent.location="http://www.google.com" })

Sina Fathieh
  • 1,727
  • 1
  • 20
  • 35