Hi,
I'm from Belgium and my main language is not English so I hope I will be clear enough to let you see what my problem is ... thank you for being tolerant ...
I've searched this forum to see if there's an answer to my problem but I didn't find it ...
Here's my problem :
I'm making a page that calls a popup window with window.open(...) command.
I'm trying to change the URL from this pop-upped window from within this popup-window with commands like
window.location = some relative URL or
document.location = some relative URL or
this.document.location = some relative URL and
tried several other variations ...
But none of these are working, there's nothing happening ...
Thinking it was a wrong relative URL I tried to apply this to the window.opener and this worked fine. So I think it is the command which has the problem ... or perhaps is it because it's a pop-up window ??? Are there some restrictions around changing URL's in pop-up windows ???
Here below is the javascript code from the pop-up window :
newLocation = "wishlist_popup.php?act=changeStatus&id=" + id + "&status=" + $status;
document.location = newLocation;
Can someone help me ???
Thank you in advance ...
Stephane