Alright so I have a link that creates a popup. In this popup there are several other links. I want it so that whenever someone clicks a link in this popup, the page will appear in the browser that the page originated from instead of in the browser of the popup. I'll try to explain a little better what I want page1.html has a link that opens popup.html popup.html has a link that is a fullsize page, so I want this link to display back in the browser window for page1.html instead of in the browser window for popup.html Hope you guys can point me in the right direction.
<a href="somepage.html" onclick="document.opener.location = this.href; return false;">Link</a> HTML: Try this.