Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Link from pop up window

Status
Not open for further replies.

drumin

Technical User
Mar 18, 2001
10
GB
We are trying to link back to the opener window from a pop up. I have done this already from 1 pop up to a specific page using TARGET "MainPage name". Our problem is we now have to do this from a pop up that can be accessed throughout our site (very extensive site so it is not really an option naming all the main pages). We've tried everything - or so we think! Has anyone any ideas here???

Thanks
 
-> try target=opener
-> you can also try to embed a hidden field containing a ref to the opener window in the opened window
 
on submit write function like this

function back()
{
document.formname.method=post
document.formanme.action="pagename"
document.formname.submit()
}
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top