Feb 2, 2005 #1 CJAI MIS Joined Oct 21, 2003 Messages 224 Location 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 Joined Oct 21, 2003 Messages 224 Location US anyone - kind of urgent! Thanks Upvote 0 Downvote
Feb 2, 2005 1 #3 mwa Programmer Joined Jul 12, 2002 Messages 507 Location 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 <><
Feb 2, 2005 Thread starter #4 CJAI MIS Joined Oct 21, 2003 Messages 224 Location US Thanks Upvote 0 Downvote