i have a popup window on my page. when they click on a link i want the page to open in the main window, not the popup. Anybody remember how to do this?
Printable View
i have a popup window on my page. when they click on a link i want the page to open in the main window, not the popup. Anybody remember how to do this?
in javascript:
window.opener.location.href ="blah blah blah"
that should do it if I remember correctly
that should be it thanks:)