Click to See Complete Forum and Search --> : loading link from main window


webtekie
08-19-2003, 12:27 PM
Hi guys,

I have a page in which I load a pop-up window with an <iframe> in it. In that <iframe> I have bunch of links, right now if I click on a link it loads a page in pop-up window, how can make it so that page loads in the main browser -- parent of the pop-up window?

thanks,
webtekie

pyro
08-19-2003, 12:36 PM
Try this:

<a href="yourpage.htm" onclick="window.opener.location.href=this.href; return false;">link</a>

For those without JS enabled, they will simply get the link in the current frame.

webtekie
08-19-2003, 12:56 PM
thanks, but this is how I had it when I did not have an <iframe>. Now that I do, pages are being loaded inside the <iframe>.

webtekie
08-19-2003, 01:10 PM
ok, go it:

window.parent.location = "url";