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

Refreshing a whole parent page with frames

Status
Not open for further replies.

emozley

Technical User
Jan 14, 2003
769
GB
Hi,

How do you refresh a parent page that has multiple frames that all need refreshing?

I have tried

<script>
window.opener.location.reload();
top.close()
</script>

and

<script>
window.opener.location.reload();
top.close()
</script>

and other variations but am not having any luck.

Thanks

Ed
 
Hi,

After a bit more research I found how to do it:

<script>
window.opener.top.location.reload();
top.close()
</script>

Ed
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top