Debt Consolidation - Debt Consolidation - Debt Consolidation - Stardoll Cheats Forum - Debt Consolidation

PDA

View Full Version : Link from a popup back to the main page


LanceT
Apr 23rd 2007, 6:43 pm
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.

nico_swd
Apr 24th 2007, 3:54 am
<a href="somepage.html" onclick="document.opener.location = this.href; return false;">Link</a>


Try this.