Is there a way to open a new window (actually I know how to do this) and then from that new window close the new window and redirect the original window to a new page?
"and then from that new window close the new window "<br>-> your_new_window.close() !!!<br><br>"and redirect the original window to a new page? "<br>-> your_new_window.opener.location="new_url.htm" if you call it from the new window [not sure it'll work AFTER the window is closed !]<br>-> this.location="new_url.htm" if you call it from the opener window [and you can try to use the onclose (or afterclose? dont remember) event]<br><br>
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.