Feb 2, 2005 #1 CJAI MIS Oct 21, 2003 224 US If I open a popup window fram a page. How can I have the parent page refresh when I close the popup window???? Thanks in advance.
If I open a popup window fram a page. How can I have the parent page refresh when I close the popup window???? Thanks in advance.
Feb 2, 2005 1 Thread starter #2 CJAI MIS Oct 21, 2003 224 US anyone - kind of urgent! Thanks Upvote 0 Downvote
Feb 2, 2005 1 #3 mwa Programmer Jul 12, 2002 507 US use the following: Code: function RefreshParent() { window.opener.location.href = window.opener.location.href; } and call that with: Code: <body onunload="RefreshParent()"> mwa <>< Upvote 0 Downvote
use the following: Code: function RefreshParent() { window.opener.location.href = window.opener.location.href; } and call that with: Code: <body onunload="RefreshParent()"> mwa <><