vote up 0 vote down star

From a child popup window (opened using window.open), I am trying to change the URL of the window that opened me, e.g.

window.opener.location.href = 'http://www.google.com';

In all browsers this works wonderfully, except for IE8 (and I am somewhat sure it worked in previous IE8. Maybe a security update kills this).

In IE8 what happens is that the line above is treated as a request to open a NEW window with the address and the original opener window stays the same. And, since I am not putting this line inside an onclick event, this is treated as a popup.

So how do I do this in IE8? How do I change the opener location?

flag

2 Answers

vote up 0 vote down

try this: on the opener window define a function called goto ;-)

function goto(url){ window.location.href = url; }

now from the child window call window.opener.goto(url);

link|flag
Unfortunately, I have no control over the opener window (it's bestbuy,com and other retailers), and even if I had, they are in a different domain than myself, so I believe I can't call any method in the opener window. – giltayar Oct 22 at 17:26
vote up 0 vote down

It looks like this is just not possible. I got no answer from anybody and all my research indicated that this is just another way MS added to block popups.

link|flag
Then that's plain silly. – Faruz Nov 2 at 6:30

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.