PDA

View Full Version : Pop Up Help


dan1132b
10-26-2002, 04:50 PM
Simple question:

I'm looking for a script to use in a popup then when one clicks a link, the link will open back in the parent window, not the popup. Thank you.

webmarkart
10-26-2002, 07:40 PM
<SCRIPT LANGUAGE="javascript">
<!--
window.opener.location.reload();
self.close();
//-->
</SCRIPT>


You can turn this into a function and call on it as an onclick event. It will opwn the link in the parent window and close the popup.

dan1132b
10-27-2002, 04:52 AM
Thank you so much for your help, webartmark.