Another frame problem
I am having a page that contains frame with two rows.
One of the row has source as ASP.It loads another ASP on click...
I want the source frame's ASP to reload on close of the popup window opened by the ASP
Please how do i do that
Anonymous posted this at 03:23 — 23rd November 1999.
They have: 5,633 posts
Joined: Jan 1970
Use the following code to close your popup.
function closePopup() {
self.close();
opener.window.reload();
}
<a href="javascript:closePopup()">close window</a>
------------------
http://go.to/hass
Want to join the discussion? Create an account or log in if you already have one. Joining is fast, free and painless! We’ll even whisk you back here when you’ve finished.