This one is driving me crazy!
I open a Popup window, and from that Popup window I update the opener URL like this:
opener.location.href = newurl
On all browsers I've tried (IE 4+, NN 4+), this updates the URL of the opener like it's supposed to.
However ... on Netscape 6.x or 7.x, changing the opener's location.href like this DOES NOT add an entry to the History stack. In other words, it acts like this instead:
opener.location.replace(newurl)
The result is you cannot use the Back button (or the history.back() fuction) to get back to the original page.
Any ideas on what's causing this, or how I can work around it?
I open a Popup window, and from that Popup window I update the opener URL like this:
opener.location.href = newurl
On all browsers I've tried (IE 4+, NN 4+), this updates the URL of the opener like it's supposed to.
However ... on Netscape 6.x or 7.x, changing the opener's location.href like this DOES NOT add an entry to the History stack. In other words, it acts like this instead:
opener.location.replace(newurl)
The result is you cannot use the Back button (or the history.back() fuction) to get back to the original page.
Any ideas on what's causing this, or how I can work around it?