Click to See Complete Forum and Search --> : using my popup window to manage links


moethedog
05-01-2003, 04:41 PM
Hi all, what I want to do is have a pop-up window that contains links. The links (in this pop-up window) are used to open up a new page, on the page directly below, the pop-up window. So a new window IS NOT opening, but the existing (full sized) window is being refreshed and loading the URL that was clicked on in the pop-up window. Make any sense. Thanks to anyone who can help me solve this. Peace

pyro
05-01-2003, 05:11 PM
Try coding you links in your popup like this:

<a href="somepage.htm" onclick="window.opener.location.href=this.href"; return false;">Open link in main window</a>