PDA

View Full Version : Reload window1 from window 2


CalypsoClub
05-23-2003, 05:36 PM
Hi,

I'm currently developing a database site. In order to edit a record you click on it and another javascript window opens with the editing page.

When I click on submit in this window I want the main window to reload, so that the changes become visible.

How do I do that?

Thanks in advance!

Cheers

CalypsoClub
05-23-2003, 06:06 PM
Never mind!

I found the solution :


Just call this little script and te parent page is refreshed. Hope it helps someone...

<SCRIPT language="JavaScript">
<!-- Begin

function ReloadParent() {

window.opener.location.reload();

}
// End -->
</script>

Bye!