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 strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Refreshing a parent page from a javascript popup? 2

Status
Not open for further replies.

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.
 
anyone - kind of urgent! Thanks
 
use the following:
Code:
function RefreshParent()
		{
		window.opener.location.href = window.opener.location.href;
		}
and call that with:
Code:
<body onunload="RefreshParent()">

mwa
<><
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top